azizulraju
Forum Replies Created
-
Forum: Plugins
In reply to: [Accordion] accordions loading slightly slowerHi, Thanks for your post.
We checked the link that you have shared. but didn’t see our
accordions
plugin is installed on that page. Can you please double-check the plugin name and author?Forum: Plugins
In reply to: [Wishlist] Conflict with the shopping cart when adding a shortcodeThanks for your post.
Unfortunately, we haven’t tested this plugin with the
Impreza
theme. Can you please check if there is an error in the browser console? also, you can share some screenshots when the issue is happening.- This reply was modified 2 years, 9 months ago by azizulraju.
Forum: Plugins
In reply to: [Post Grid and Gutenberg Blocks - ComboBlocks] PostGrid with mediaThanks for your post.
Unfortunately, the pop-up feature isn’t available right now.Thanks for your post.
We have investigated the plugin and didn’t find any issue. There might be a conflict between other plugins. Can you please deactivate one by one and check if the issue is still there? also, you can try to delete the
user-verification
plugin and reinstall it again. let us know the result, thanks.Forum: Plugins
In reply to: [Product Slider for WooCommerce by PickPlugins] Trim TitleThanks for your post.
yes, there is a filter hook available. it’s called
wcps_layout_element_title_text
. you can follow this codeadd_filter('wcps_layout_element_title_text','wcps_layout_element_title_text_2622022', 99,2); function wcps_layout_element_title_text_2622022($title, $args){ $title = mb_strimwidth($title, 0, 100, '..'); return $title; }
Thanks for your post.
Just add these extra classes
ad-zone ad-space ad-unit textads banner-ads banner_ads
on theitem
div. hope the issue will resolve.add_action('post_grid_loop', 'post_grid_loop_ads_26022022'); function post_grid_loop_ads_26022022($args){ $loop_count = isset($args['loop_count']) ? $args['loop_count'] : ''; $post_id = isset($args['post_id']) ? $args['post_id'] : ''; if($loop_count == 1 || $loop_count == 3){ ?> <div class="item ad-zone ad-space ad-unit textads banner-ads banner_ads"> <!-- add these classes --> <a href="#ads-url"><img src="https://i.imgur.com/LWCYk60.png"></a> </div> <?php } }
- This reply was modified 2 years, 9 months ago by azizulraju.