Schalk Joubert
Forum Replies Created
-
Hi, This issue seems to be ongoing. Is there any update on this, as promised above. thank you.
Forum: Plugins
In reply to: [MapGeo - Interactive Geo Maps] Integrate with FacetWPThank you Carlos. I am using the free version. Happy to upgrade if I know I can get this to work ?? here is the right link, just in case that will enable you to give me a few hints. Thank you
Forum: Plugins
In reply to: [MapGeo - Interactive Geo Maps] Integrate with FacetWPHi Carlos. I pushed my dev site t a live server to better show my problem.
https://le-chant.local/agents/
I did see this page in the documents, but that is not exactly the same, and doesn’t work for me.
https://interactivegeomaps.com/docs/jump-to-specific-page-section-on-click/#my-sectionThank you so much
Forum: Plugins
In reply to: [MapGeo - Interactive Geo Maps] Integrate with FacetWPI added the same url as the facetwp checkbox to the action content for each country, ie, /agents/?_agent=belgium and it works, the problem is just that the page reloads every time I click on another country.
I work on a local site, but this image show the page (eventually IO like to hide/remove the facetwp checkboxes as I wnat users to click on the map instead.
https://www.dropbox.com/scl/fi/fbqskgssekqw6828aqd2j/agents.jpg?rlkey=8vf6tjx1da5r7u0xj3y08duqw&dl=0
Forum: Plugins
In reply to: [Secure Custom Fields] Save json files to different foldersTo further clarify, I would like to save the json files locally as follows:
wp-content/plugins/slider/acf-json/group_123.json
wp-content/plugins/testimonial/acf-json/group_456.json
wp-content/themes/store-child/acf-json/group_789.jsonForum: Plugins
In reply to: [WooCommerce] Woocommerce CSV product import hangs – Issue with file formatHi, Thank you so much.
Unfortunately, it didn’t make any difference for me.Forum: Plugins
In reply to: [WooCommerce] Restrict add_image_size to Woocommerce Post type onlyThis seems to be working when I added an image to another CPT
But when I added a product image, none of the WC image sizes was created…function remove_wc_image_sizes() { if( get_post_type() !== 'product' ) { remove_image_size( 'woocommerce_thumbnail' ); remove_image_size( 'woocommerce_single' ); remove_image_size( 'woocommerce_gallery_thumbnail' ); remove_image_size( 'shop_catalog' ); remove_image_size( 'shop_single' ); remove_image_size( 'shop_thumbnail' ); } } add_action('init', 'remove_wc_image_sizes');
- This reply was modified 3 years, 11 months ago by Schalk Joubert.
Hi,
This seems to help, but it may cause issues elsewhere, ie with responsive mode.
.slick-track { display: flex !important; } .slick-track .slick-slide { display: flex !important; height: auto !important; align-items: flex-end !important; justify-content: center !important; }
Hi,
To better illustrate, I changed the size of 2 of the images in your demo.
Please see new screenshotI know by uploading the same size images or force the image size, it will be fine, but this is not possible with my products.
thank you
Forum: Plugins
In reply to: [Product Slider for WooCommerce by PickPlugins] Equal Heights for imaSorry, hit enter by mistake, was still busy to add the title:
Equal Heights for Image Wrapper in Carousel
Forum: Plugins
In reply to: [ACF: Better Search] Include Options Table to Search IndexHi,
Thank you. Not what i wanted to hear, but it makes sense.
Just one more question; This page is created with the acf and wp_options table.
https://discountbooks.thissideupmedia.com/about/since it can’t be indexed with wp_search, does it also mean it won’t be indexed by search engines?
Thank you
SchalkForum: Plugins
In reply to: [Simple Sticky Header on Scroll] Positioning of Menu?@bonfirethemes You can achieve this by wrapping it all in a div and center it with css. BUT you will loose this modification next time you update the plugin.
@devaris Is it possible to add this div to the next release, or ad a few hooks.
LINE +/- 180, just before <!– BEGIN DROPDOWN MENU BUTTON –>
<div class="sshos-tsum-inner">
LINE +/- 230, just after <!– END NEXT POST BUTTON –>
</div>
And your css:
.sshos-tsum-inner { max-width: 66.4989378333em; margin-left: auto; margin-right: auto; padding: 0 2.617924em; -webkit-box-sizing: content-box; box-sizing: content-box;
Forum: Plugins
In reply to: [Better File Download] How to block bfd_download/ ?My solution above also hides Downloads in the wp admin.
So I reverted to:add_action( 'template_redirect', function () { // if (is_singular('bfd_download')) { if (is_post_type_archive('bfd_download')) { global $wp_query; $wp_query->posts = []; $wp_query->post = null; $wp_query->set_404(); status_header(404); nocache_headers(); } } );
Forum: Plugins
In reply to: [Better File Download] How to block bfd_download/ ?Hi, you can add the following to your child theme’s functions.php.
This worked for me.function tsum_download_custom_post_type_args( $args, $post_type ) { if ( $post_type == "bfd_download" ) { $args = array( 'has_archive' => false, 'publicly_queryable' => true, 'hierarchical' => false, ); } return $args; } add_filter( 'register_post_type_args', 'tsum_download_custom_post_type_args', 20, 2 );
Forum: Plugins
In reply to: [Better File Download] How to block bfd_download/ ?Hi,
Ditto this one, It will be a dealbreaker for me that this security should be by default part of the plugin.
Thank you