Code

Discussion on WP ACF-VC Bridge - Integrates Advanced Custom Fields and WPBakery Page Builder WordPress Plugins

Discussion on WP ACF-VC Bridge - Integrates Advanced Custom Fields and WPBakery Page Builder WordPress Plugins

Cart 1,622 sales

pavelreva supports this item

Supported

390 comments found.

Hi, Thanks for the awesome plugin. I am using WPBakery and ACF Pro along with your plugin. Created repeater on homepage and I need to add data-id to each vc-acf-field-picker-repeater-row which dynamically needs to get one of the fields value from each repeater. Ex. I have some IDs in a select that need one of them to be be picked by user in each repeater and I need this id shows up as the data-id in repeater row. I tried to get the filed value in vc-acf-field-picker-filters.php but seems doesn’t work. would you please help me how I can get custom field value inside your plugin, Thanks. -Nazanin

Hi Nazanin,

Yes, it there. You can send me direct email at info@pavelreva.com

Best, PR

Thanks, I wonder if you received my email yesterday. Please let me know if you haven’t received it yet. Thanks,

Nazanin

Hi Nazanin,

Yes, just replied.

Best, PR

We are currently experiencing an issue with “Round Chart” element: long titles do not display properly, cutting off on the right (please review attachment).

Page URL is http://hudson.oss-usa-test.info/financial/financial-strength/

Please note, we can decrease font-size as a temporary fix, but we are looking for good reliable solution.

Thanks

Jim

Hi Jim,

This is what I see https://prnt.sc/i9cewk

Could you make a screenshot to explicitly show the problem please?

Best, PR

Sure – where can I send you an image?

Hi Jim,

You can email me at info@pavelreva.com

Best, PR

Hi, I have an ACF URL field. How can I render this as a link. Do I need to add something to the function.php?

Weird. Ok, please send me a private message with wp access and link to that page where you’ve added URL field and I’ll take a look.

Best, PR

OK all is sorted. I re-saved and now it works thanks.

Ok, sounds good!

Hi Pavel, I hope you are having a good weekend, I have tried your ACF & WP Bakery Plugin and it does not appear to be working with either the current ACF Pro 5.67 or an older version I have (5.5). I have WP Bakery 5.45.

I never see the Visual Composer field type in ACF. Is the version in the Wordpress plugin repository out of step with the version on Code Canyon?

Best regards

Paul

Hi Paul,

Sorry to hear you have such issues.

The plugin has been tested and works well with WP Baker up to 5.4.5 and ACF Pro up to 5.6.7 (this latest version is actually shipped with the plugin).

I need to debug to see what problem exactly you have. For this I’ll need access to your WP Admin first, which you can send me via private message.

Best, PR

Hi, can you test acf picker for.google map in tabs, accordion, fag/toggles? In this modules description doesnt show acf picker map

Hi,

Please send me a private message and I’ll email you back the newest plugin zip or you can wait until it becomes available for download on codecanyon.

Best, PR

Oh thank man, you can send it to info@masterstudio.az thank you very much

Thanks, sent.

Hi pavelreva. Nice Plugin. But I got a bit of a problem.

I have just contacted you via support system

If you have time, could you have a look?

I have send you all logins

Thanks so much

Hi, how does “ACF Field Group” work? Is it possible to assign a template? I can’t display any subfield. Thanks

I’m using inside a templera page

It looks weird, i need to discover. Please send me wp admin access to this demo store via private message.

Hi,

I’m using ACF Pro and I need a Visual Composer field in a repeater field’s subfield. Is it possible to do it with your plugin?

Will your plugin cause conflict with my existing ACF Pro?

Thanks a lot, Zoltan

Hi Zoltan,

Yes, you can put Visual Composer field in a repeater field. The only thing to keep in mind that if you’ll add many VC fields on a single page (which repeater allows easily) it may start loading slower. In your case I would switch option to “Compact” mode, which prevents loading Visual Composer for all VC fields in repeater until user clicks “Edit” button. Will improve your performance.

Are you using some special/customized ACF Pro? If not, then there should be no conflicts. The plugin comes with the same ACF Pro inside after all.

Hope this helps. Let me know if you have other questions.

Best, PR

Hi Pavel,

Thanks for your reply. My ACF Pro is a normal one, so my question is that do I have to uninstall it first or your plugin will overwrite it? What about the fields already created? Moreover, can I update the ACF Pro from it’s author, later on?

Thanks again, Zoltan

Hi Zoltan,

If you have ACF Pro installed and activated, than it will be used instead the one that is shipping within a plugin. Nothing will be removed, replaced or deleted.

If you keep your existing ACF Pro you do updates as usual. If you’ll switch to the ACF Pro from the WP ACF-VC Bridge plugin, then ACF Pro will be updated along with the whole plugin.

Best, PR

Hi, i’ve created a custom post type and assigned a field group to it. inside the field group there is no template field, so i can’t assign a template snippet.

what i want to do: - use a custom post type called “shops”. there i want to edit and add shops. not on the wp page “shops”. it must be a custom post type.

- output the data on a page called “shops”

- when i click on a single shop it should show a detail page with further informations.

is this possible with your plugin?

thanks, saad

Hi Saad,

Generally, what you’re doing is possible. The rest is in details.

Please send me access to your wp admin via private message. I need to see what exactly you’re doing there in technical terms.

Best, PR

Pre sales question. Can I use this to add slider images from an ACF gallery field?

Hi,

Nope. Such opportunity would require direct integration between the slider you have and ACF gallery field.

However, you may want to look at my another plugin Custom Page Templates which allows dynamically replace shortcode attributes with the other values. So, if you have a VC slider component where images specified there as a shortcode attribute, then you could dynamically pull image ids from ACF Gallery field.

Here is the article that demonstrates such thing for standard VC components: Media Grid and Masonry Media Grid

Hope this helps. Let me know if you have other questions.

Best, PR

Have any way add image external link to ACF image with this plugin?

It is good but I dont know php well. If my image field=photo my link field=testurl. Can you send me codes, please?

Hi,

Add this to your functions.php

add_filter( 'vc_acf_field_picker_render_field_type_image', function ( $value, $field_object, $post_id ) {
  if ( ! $value ) {
    return $value;
  }

  $size = apply_filters( 'vc_acf_field_picker_render_field_type_image_size', 'medium', $post_id, $field_object );
  if ( is_array( $value ) ) {
    $value = $field_object[ 'value' ];
    $image = wp_get_attachment_image( $value[ 'ID' ], $size );
  }
  elseif ( is_numeric( $value ) ) {
    $image = wp_get_attachment_image( $value, $size );
  }
  else {
    $image = sprintf( '<img src="%s" />', $value );
  }

  return sprintf( '<a href="%s">%s</a>', get_field( 'testurl', $post_id ), $image );
}, 11, 3 );

Best, PR

I thinked I can create a lot of imagea and links in same page. İt is very hard me. And I found alternative method. I use wysiwyg editor and add link to image with this. Thank you spend time for me

Hello,

I am trying to use a Post Masonry Grid on a category page, with a specific data source. I am using the ‘exclude from filters’ option as well. It does not appear that any filters I am inputting are being filtered however. Is this not working correctly?

Hi,

I need to see what exactly you’ve put there and the outcome. From the words it’s impossible to tell what works on not. You can send me a private message with temporarily WP Admin access and link to a category you’re referring to, so I can take a look.

Best, PR

Thanks, I sent you a message!

Hi

Please excuse my ignorance, but can you tell me what this plugin actually does? Is it if you have created a site using ACF and would like the ability to add a Visual Composer layout?

If so then why not just use Visual Composer to design pages etc?

Many Thanks

Hi,

You need it when:
  1. There is a need to add Visual Composer editor to category page
  2. or just create 2-10 VC editors on a page
  3. It has a better ACF fields processing and rendering comparing to standard ACF component in Visual Composer
  4. You want to define templates in Visual Composer for ACF Repeater and Flexible Content (limited though, but still useful if you have no PHP knowledge).
  5. Need ability to create content parts that you’ll use in many places of your website, but want to manage all in a single place.

There are corresponding blog articles for each here http://wpacfvcbridge.com/blog/

Also, it ships ACF PRO, but doesn’t Visual Composer. So, the latter must be installed separately.

Feel free to drop me a line if you have other questions.

Best, PR

I am trying to show certain posts from my website using this plugin, but I do not know what to put into the shortcode to make it work.

Can you please assist via a private email?

Thanks :)

Hi,

Please send me private message then with the details about your case. Would be helpful to have access to your WP Admin, so I can check what I need right away.

Best, PR

The plugin doesn’t work. I get an error in the browser’s console “Error switching editors” vc-snippet-admin-embedd.js:112:9

Edit: This bug doesn’t happen on Chrome. Only on firefox.

Hi, email sent

Hello.

I have managed to make the visual composer show on the page when I am editing it… but the content does not appear on the page when viewing it.

Anything you think I am doing wrong?

Thanks!

Hi,

It sounds like you just haven’t added that field somewhere in your main page’s content.

E.g. additional Visual Composer comes as an ACF field. All content you create there with remains just in that custom field. In order to show it somewhere on a page, you need to add this custom field to your primary content editor. Utilize ACF Field Picker for this.

Let me know if you still have questions.

Best, PR

All fixed. Thank you

Sounds great! You bet

Hi, recently there was the question about the plugin integration with the “Uncode Visual Composer”.

Was there a solution? Because I have the exact same problem :(

I would be very happy, if you could help here.

Cheers Franz

Hi Franz,

Yes, the issue was related to the custom VC path and that issue has been resolved.

Best, PR

Hi PR,

oh ok – so what would be the steps to get it working? ^^

Thanks in advance, Franz

Hi,

Just download and install the latest version of the plugin and that’s it. Please confirm all is good afterwards.

Best, PR

HI, just a presale query :

is ACF pro plugin included with this WP ACF-VC Bridge package ?

Hi, yes it’s included.

cool :)

Just to say thanks for a great plugin and BRILLIANT customer support. 5 Stars!

Thank you :)

Hi! It is posible show the field label as a H2 or H3 and with a custom class? I’m using field picker. Thank you.

Hi,

Yes possible, but available in newer version, see screenshot. Please send me private message and I’ll email you zip back with headings support.

Best, PR

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey