devilmakq
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Ajax loading of blog posts not workingReport Number
MHNWCRCMForum: Plugins
In reply to: [LiteSpeed Cache] Ajax loading of blog posts not workingHere is a video showcasing that it works when disabling litespeed cache.
Forum: Plugins
In reply to: [LiteSpeed Cache] Ajax loading of blog posts not workingHello, please scroll down to blog post section. (LEARN MORE ABOUT BUSINESS)
It has numbers given below to switch page.
When clicked on any number to switch page, it does not load.
https://dmmotionarts.com/portfolio-website-example-and-free-elementor-template/Forum: Themes and Templates
In reply to: [OceanWP] Responsive Buttons Not Working in Theme CusotmizerIt was Hostinger Plugin that is installed by default for hostings in hostinger.
Forum: Plugins
In reply to: [WooCommerce] Product Gallery Images to RectangleFound a code to do it.
Used custom snippet plugin and selected php text.
Use the max width to choose the width of the gallery images.
Use the height to choose the height of gallery images.
example ; ——- max width 1280px
.
.
.
‘height’ => 720,
.
.
}
Might require thumbnail regeneration but I didn’t do it. I already had 1280×720 version generated by woocommerce.// change woocommerce thumbnail image size add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'override_woocommerce_image_size_gallery_thumbnail' ); function override_woocommerce_image_size_gallery_thumbnail( $size ) { // Gallery thumbnails: proportional, max width 200px return array( 'width' => '', 'height' => 150, 'crop' => 0, ); }
So, you’re saying that it will enable a free version of search but where can I find this free version of search?
I am not able to find the search addon at all. Check the attached picture below. https://prnt.sc/xRWMlVAZxEnh
The links you send me above are giving me 504 gateway time out.
I am using hello elementor and elementor pro.
I tried using shoplenter’s template builder but still it is not showing the search widget.Forum: Themes and Templates
In reply to: [OceanWP] Oceanwp checkbox borders invisibleHello, I did remove it because I couldn’t find a way to check it.
But you can also check it on checkout field at the end of billing detail section.
URL – https://postimg.cc/YG185qSw (unticked)
URL – https://postimg.cc/K1S72hdG (ticked)
This is happening to all checkbox where the border is not even visible.Forum: Themes and Templates
In reply to: [OceanWP] Customize SKU in archive pageHow do I add custom class for SKU though as I am using oceanwp? I don’t have much coding knowledge.
I am using the code to show SKU.add_action( 'woocommerce_after_shop_loop_item_title', 'custom_after_title' ); function custom_after_title() { global $product; if ( $product->get_sku() ) { echo $product->get_sku(); } }
How am I supposed to add custom class to SKU as I am using oceanwp’s prebuilt functions.
Forum: Themes and Templates
In reply to: [OceanWP] Customize SKU in archive pageThank you for your reply.
But what I meant was to customize the text itself. Like making the text bigger, bold or changing its color.Forum: Themes and Templates
In reply to: [OceanWP] menu cart quantity colorI was able to add CSS and fix it. But I would still like to know if there is an option in the customizer for it..
The code I used is:/*Oceanwp cart quanity number color*/ .wcmenucart-details.count { color: #000; }
- This reply was modified 1 year, 11 months ago by devilmakq.
Here is an attached image showing the issue.
Forum: Themes and Templates
In reply to: [OceanWP] Review stars not changing colorsHello, I mean the ratings below the main product title. Also the above CSS did nothing.
Forum: Themes and Templates
In reply to: [OceanWP] Font not showingHello, I am not sure what elementor kit is doing. I don’t think it is affecting menu text.
I have selected exo 2 in oceanwp typography but it doesn’t work on menu, top bar etc. It is working for other fonts but just exo-2 isn’t working.https://pasteboard.co/MLvjSBAMMfcC.jpg
Yes, my client purchased the plugin and then I manually added the fields then it started working. It wasn’t working in the free version.
Forum: Themes and Templates
In reply to: [OceanWP] Want to increase the columns in product galleryHello, thank you for your response. It did work for the product page that was mentioned above but it doesn’t work for all products. They are not aligned to left and space between each product page thumbnails is different.
Basically there is no consistency between product pages. I want it to be aligned to left. If there are only 2-3 thumbnails then the above code doesn’t look good.