gemedj89
Forum Replies Created
-
I confirm that the file is detected as infected, containing a URL that is present in various blacklists.
From the trac you can see the diff from 6 days ago.Sorry, it was that simple! I expected to find it in settings.
Thank you, SOLVEDForum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeHi Ahmed. The problem is very simple, please pay attention.
Thumbs must be small and lightbox image must be large.
In your demo video the thumbs is large not small.I try to explain with this fiddle : https://jsfiddle.net/fzk9e6at/1/
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeHi Ahmed, thanks for the video. Please take a moment to re-read the request and understand the problem.
The miniature must be small (150×150) not 1000×1000
If set to small, both the thumbnails and the image in the lightbox are displayed in small.
If I set large both the thumbnails and the image in the lightbox are displayed large. This is a problem because the page then has a weight of 100mb if there are 50 images (around 2mb each).
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeHello Ahmed, it is impossible not to reproduce the problem. Can you send me any link where the problem is NOT present?
The url I sent you was for a clean install.
Fresh install : https://classifytouch.tastewp.com/sample-page/?amp
i can send also login if you need (is a sample site)Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeThis is a Exported AMP option settings : https://filebin.net/3i1eo2lcimspixr9
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeHi, i build a temp site for you.
https://hangtitle.tastewp.com/2020/08/05/hello-world/?amp
Fresh install, no others plugin or theme edit.If you try to click on lightbox the image will shown on low resolution.
This is a wrong operation for the lightbox.
A possibile solution is to set the images to large (on WP Gallery) but this then becomes a problem because ALSO the thumbnails are loaded as large and therefore the weight of the page becomes huge.Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeYes I have this problem using AMPforWP
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Thumb size and Lightbox sizeI need to show about 100 images in a single article (map images).
When I add the images in gallery, WordPress asks for the image size. If I choose small, the image will be shown small in both the thumbnail and the lightbox.
If set large, the image is shown large both in the thumbnail and in the lightbox.
By setting to large the page weight exceeds 20 mb.
Setting it to small makes map images unreadable.Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Order of featured postsThanks dcooney, i have already read and try with this documentation.
I try to explain:POSTS: NAME DATE IS STICKY A (10 december) C (9 december) STICKY B (8 december) G (7 december) STICKY E (6 december) STICKY F (5 december) D (4 december) CORRECT ORDER: (I need this) C G E A B F D PLUGIN ORDER: C E G A B F D The order of sticky posts is ALWAYS alphabetical. Using pre_get_post or parameter "orderby" date the result will be: A C B G E F D
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Order of featured postsSticky posts : https://www.ads-software.com/support/article/sticky-posts/
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Order of featured postsHy dcooney, thanks for support.
I need to order by date all posts included the featured posts.
If I use [ajax_load_more order=”ASC” orderby=”date”] the featured posts not show in first position.
If I don’t use the parameter order the the featured posts show in first position BUT not in date order but in alphabetical order and the remaining posts are sorted correctly.Forum: Plugins
In reply to: [WooCommerce] Woocommerce : [max_qty] not work using backorderSolved :
if ($product->is_type( ‘variable’ )){
// Get the available variations for the variable product
$available_variations = $product->get_available_variations();// Initializing variables
$variations_count = count($available_variations);
$loop_count = 0;// Iterating through each available product variation
foreach( $available_variations as $key => $values ) {
$loop_count++;
// Get the term color name
$attribute_color = $values[‘attributes’][‘attribute_pa_size’];
$wp_term = get_term_by( ‘slug’, $attribute_color, ‘pa_size’ );
$term_name = $wp_term->name; // Color name// Get the variation quantity
$variation_obj = wc_get_product( $values[‘variation_id’] );
$stock_qty = $variation_obj->get_stock_quantity(); // Stock qty// The display
$separator_string = ” // “;
$separator = $variations_count < $loop_count ? $separator_string : ”;// echo $term_name . ‘ = ‘ . $stock_qty . $separator . ‘<br>’;
if ( $stock_qty > 0 ) { echo ‘<style> body span.swatch.swatch-label.swatch-‘ . $term_name. ‘{opacity:1!important; background: #484848!important; color: #fff!important;}</style>’ ;} else { }
}}
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Edit List and other pages not workSolved, the theme add to admin page a custom css cached with
.form {
display: none;
}Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Edit List and other pages not workAny error show after enable debug and error to display in mailpoet settings, but not work again.