Rohan Khandeparkar
Forum Replies Created
-
Forum: Reviews
In reply to: [Visual Composer Website Builder] too slow to fix bugsHi,
We provide support via the ticket system and respond to queries within 1-2 hours to solve any issues that are being reported.
If you opened a ticket via our support portal, then can you please share the id of the ticket with us?Hi,
As suggested in previous reply, we will be adding it onto our feature request list.
Hello,
I am afraid, we do not have such a feature on our roadmap. I will add it to our feature request list. However, this can be achieved using a third-party plugin that has such a feature. A premium plugin like essential grid might have such a feature. There might also be some plugins in the WordPress plugin directory with a similar feature.
You can identify a similar plugin and then add it’s shortcode via the shortcode element of Visual Composer to render it onto a page.
Thanks,Hi,
The screenshot shared by you shows a gallery that has images of different width. Unfortunately, the Visual Composer does not support such a layout.
The Visual Composer can add a gallery where image width will remain equal while it’s height can vary.Thanks,
Forum: Plugins
In reply to: [Visual Composer Website Builder] Calling a page doesn’t workHi,
By setup we mean WordPress setup.
A premium license will allow you to obtain help from the support team in case you face any issues while using the plugin or while implementing any functionality.
Apart from this, it will also allow access to premium features such as premium elements, header and footer builder, popup builder, etc. You can check more details of premium features here: https://help.visualcomposer.com/docs/getting-started/free-vs-premium/Forum: Plugins
In reply to: [Visual Composer Website Builder] Calling a page doesn’t workHi,
Since the code works on our setup, the same code should have worked on your setup as well. As it does not work on your setup, it looks like something on the setup might be causing the issue.
Unfortunately, the footer URL does not help us in locating the issue source and suggest a solution based on it.
Hence, we would request you to kindly reach us via our support portal: https://help.visualcomposer.com/supportForum: Plugins
In reply to: [Visual Composer Website Builder] Calling a page doesn’t workHi,
We tried adding a background and margin for a row element: https://i.imgur.com/Z4neOK2.png
Then used the same code that outputs it for a single.php template: https://i.imgur.com/NLezjkQ.png
However, when we visit the page, it is rendering the background and margin: https://i.imgur.com/CAUzkE1.png
We would request you to kindly drop us a ticket via the support portal: https://help.visualcomposer.com/supportThanks,
Hello,
If you are looking to create a gallery where image height will vary (i.e. different number of rows per column), then the plugin has an element called Image Masonry Gallery.
In this element, the image width remains the same and the height will vary depending on the original image.
Thanks,
Forum: Plugins
In reply to: [Visual Composer Website Builder] Calling a page doesn’t workHi Mike,
It is advisable to have a loop when you do it. For eg:
$postId = 4;
$args = array(
'p' => $postId,
);
$loop = new WP_Query($args);
if ( $loop->have_posts() ) :
while ( $loop->have_posts() ) : $loop->the_post();
the_content();
endwhile;
endif;A more convenient way is to use our special API method for it:
$postId = 4;
$frontendHelper = vchelper('Frontend');
$content = $frontendHelper->renderContent($postId);
echo $content;Thanks,
Hi,
Thanks for sharing the screenshot.
The page shared by you is built using WPBakery Page Builder plugin (the product slider is added using an add-on of WPBakery Page Builder).
Please note that the WPBakery Page Builder: https://wpbakery.com/ and Visual Composer Website Builder: https://visualcomposer.com/ are two independent plugins. The former works using shortcodes while the latter works by rendering content using react-based layouts.
Since the issue in this case is related to an add-on of WPBakery Page Builder plugin, you can contact respective developer of WPBakery Page Builder add-on.
- This reply was modified 3 years, 5 months ago by Rohan Khandeparkar.
Hi,
Can you please share the screenshot of element used to create the product slider at your end?
Thanks,
Forum: Plugins
In reply to: [Visual Composer Website Builder] Website view on other devicesHi,
Most of the content rendered by the Visual Composer auto-adjusts depending on the screen size.
However, the layout can also be controlled using it’s settings depending on the screen size.
The design options has a feature called “Device type” which allows specifying different values for margin, padding, etc. for each of the screen sizes. You can check more details about it here: https://help.visualcomposer.com/docs/features/design-options/
Additionally, you can also change row layouts depending on the screen size.
Thanks,Forum: Plugins
In reply to: [Visual Composer Website Builder] Blog post not showingThanks for the screenshot.
It shows that all the posts have the same category.
I would request you to kindly drop us a ticket via the official support channel: http://help.visualcomposer.com/support regarding the issue.Forum: Plugins
In reply to: [Visual Composer Website Builder] Blog post not showingHi,
One possible reason can be if the blog page is displaying a specific category or tag and the post is not having it assigned.
You can check the blog page setup to see if the grid used is filtering the posts based on category or tag.
Thanks,
Hi,
Can you please share the website url so that we can check as to how the added code is being rendered, to guide you further?
Thanks,