chris3872
Forum Replies Created
Viewing 9 replies - 1 through 9 (of 9 total)
-
I find a solution in modifying class-cartpops-ajax.php file in line 203, I replace with :
$item_removed_title = apply_filters( ‘cartpops_cart_item_removed_title’, ( $product ? sprintf( x( ‘%s’, ‘Item name in quotes’, ‘cartpops’ ), $product->get_name() ) : _( ‘Item’, ‘cartpops’ ) ), $cart_item );
- This reply was modified 1 year, 4 months ago by chris3872.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] be rocket and Divi themeThank you @razyrx I just solve my problem with a bit of code:
<script> jQuery(document).ready(function($) { var resultsSection = $('#section-id'); // replace 'section-id' with ID of the section where the filter display. if (resultsSection.length) { // Cache la section des résultats par défaut resultsSection.hide(); // Surveille les modifications apportées à la section des filtres $(document).on('DOMNodeInserted', '.berocket_single_filter_widget_253183', function() { // Si un filtre est appliqué, affiche la section des résultats if ($('.berocket_single_filter_widget_253183 input:checked').length > 0) { resultsSection.show(); $('html, body').animate({ scrollTop: resultsSection.offset().top }, 1000); } else { // Sinon, masque la section des résultats resultsSection.hide(); } }); } }); </script>
Thank you, it was so easy !
Forum: Plugins
In reply to: [LiteSpeed Cache] Error 500Thanks for your help
Forum: Plugins
In reply to: [LiteSpeed Cache] Error 500I solved the problem by increasing memory limit from 256M to 512M
Forum: Plugins
In reply to: [LiteSpeed Cache] Error 500Yes it’s in cpanel
Forum: Plugins
In reply to: [LiteSpeed Cache] Error 500Thanks for your answer, but I don’t know how to check the log file
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export stripe feeThank you so much ! So easy!!
Forum: Plugins
In reply to: [Dropbox Folder Share] It's not working at all, like in your home pageSame issue here…
And the code you give doesn’t work for me… Or I can write it at the good place… Can you post the exact match of the line ?Thank you very much
Viewing 9 replies - 1 through 9 (of 9 total)