johnogg
Forum Replies Created
-
@jeherve – As hnuecke mentions, I’m taking over the development of the Gallery Custom Links plugin. What do I need to do on our side to stop the clash with jetpack carousel and prevent users from having to edit their functions.php file?
Forum: Plugins
In reply to: [WP Gallery Custom Links] After the update to 4.7Hi @hnuecke
For the short-term you can add this snippet to your functions.php file. I’ll look to fix the issue in a future release.
add_filter( 'jp_carousel_force_enable', '__return_true' );Arnaud, I did reply to your post in the other conversation. I am interested in where the img tag code you posted above comes from. When I go to https://3dms.fr/index.php/prestations/illustrations and look at the source code I see
<img width="150" height="150" src="//3dms.fr/wp-content/uploads/2015/10/les-montagnards-ambiance-fin-de-journee-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="Portfolio perspectives extérieures" aria-describedby="gallery-2-667" srcset="https://3dms.fr/wp-content/uploads/2015/10/T-_ESCAUT_HABITAT_MONTAGNARDS_PROJETPSD_escautv2_SD-150x150.jpg 150w, https://3dms.fr/wp-content/uploads/2015/10/les-montagnards-ambiance-fin-de-journee-160x160.jpg 160w" sizes="(max-width: 150px) 100vw, 150px" />If I remove the reference to T-_ESCAUT_HABITAT_MONTAGNARDS_PROJETPSD_escautv2_SD-150×150.jpg then the image works. I think something else is causing that error. Maybe you can also specify what other plug-ins you have installed?
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links no longer workHi. I just took over development of this plug-in. If any of you still need assistance please let me know and I’ll be happy to take a look. If you could provide a link to an example that is always helpful…
Forum: Plugins
In reply to: [WP Gallery Custom Links] After the update to 4.7Arnaud, the problem appears to be that the image tags are being generated with erroneous srcset values. For example:
srcset="https://3dms.fr/wp-content/uploads/2015/10/T-_ESCAUT_HABITAT_MONTAGNARDS_PROJETPSD_escautv2_SD-150x150.jpg 150w, https://3dms.fr/wp-content/uploads/2015/10/les-montagnards-ambiance-fin-de-journee-160x160.jpg 160w"I’m not sure where it’s getting that T-_ESCAUT_HABITAT_MONTAGNARDS_PROJETPSD_escautv2_SD-150×150.jpg value from. Do you have any plug-ins or edits in your functions.php that do anything to srcset values? Or any memory of setting anything up with that image address?
Forum: Plugins
In reply to: [WP Gallery Custom Links] Caption text link optionHi. I’m about to take over ownership of this plugin and am interested in your enhancement request. Can you give me an example of a page you have that uses the tiles but doesn’t have the link on the caption text?
Forum: Plugins
In reply to: [WP Gallery Custom Links] Columns misalignedThis is because those without links are not displayed within an link in the same manner as your other images. It means that most of your images have this css applied:
.gallery-item a, .gallery-caption {
width: 90%;
}But the two without a link do not. Thus they are wider. You will need to decide how to handle this in your HTML or CSS code but it is not an issue with this plugin.
Forum: Plugins
In reply to: [WP Gallery Custom Links] After the update to 4.7Hi Guys. I’m going to take over development of this plugin. Could you tell me what error message you are seeing and where?
Forum: Plugins
In reply to: [WooCommerce Image Hover] Not compatible with last version of wordpressLooks like you now need the script to also update the srcset attribute as well as the src attribute on the main image. Hopefully the developer can update this soon as it’s a simple fix.
Forum: Plugins
In reply to: [PayJunction Gateway Module for WooCommerce] Fatal ErrorWe had the same issue with our site. The payjunction team say they are going to release a new version tonight. In the meantime, I replaced all the add_error() calls with wp_add_notice calls. For example:
removed this line:
$woocommerce->add_error(__('The selected credit card type is not available for your billing country', 'woothemes'));and added:
wc_add_notice('The selected credit card type is not available for your billing country', 'error' );