Diego Betto
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Disable post title escapingOh, nice trick @bcworkz, thank you!
Forum: Developing with WordPress
In reply to: Disable post title escapingAdmin/Super Admin with Gutenberg. It should be unfiltered, but it’s saved escaped to db.
Forum: Plugins
In reply to: [Intuitive Custom Post Order] Undefined offset: 0Sure, done
Forum: Plugins
In reply to: [Intuitive Custom Post Order] Update 3.1.4 causes error if role doesn’t existmaybe better use this?
$editorRole = get_role( 'editor' ); if ($editorRole) { $editorRole->add_cap( 'xxxxxx' ); }
It seems related to security issues
https://wpscan.com/plugin/intuitive-custom-post-orderSame here, more than anything I would like to know if it has been removed because it is no longer maintained or for security problems.
Thank you!
Forum: Plugins
In reply to: [Email Before Download] Why is this plugin dropped from the plugin repo?Hi mandsconsulting,
thank you for your reply. Which kind of issue? Security?
Should be disabled in the meanwhile?Thank you
my 2 cents: may be that this happen only on english versions? On “it” versions we have no alpha upgrade
Maybe link has a timeout.
It seems that in your dashboard you load in image based on this json
https://fast.wistia.com/embed/medias/oegnwrdag1.json?callback=wistiajson1
The image is inside DIV ‘wistia_click_to_play’, image has ALT ‘Wistia video thumbnail’.
Maybe loading is here
javascript document.addEventListener("DOMContentLoaded", function() { var trigger = document.getElementById("wistia-play-button"); window.wistiaSmushEmbed = null; window.wistiaInit = function(Wistia) { window.wistiaSmushEmbed = Wistia.embed("oegnwrdag1", { version: "v2", videoWidth: 1280, videoHeight: 720, playerColor: "14485f", videoQuality: "hd-only", popover: true, popoverPreventScroll: true }); }; if (trigger) { trigger.addEventListener("click", function(e) { e.preventDefault(); if (window.wistiaSmushEmbed) { window.wistiaSmushEmbed.play(); } }); } });
- This reply was modified 4 years, 6 months ago by Diego Betto.
Forum: Plugins
In reply to: [Lazy Loading Feature Plugin] how to exclude?Just add
loading="eager"
to images that you want to keep with normal browser behaviorhttps://github.com/WordPress/wp-lazy-loading/pull/4#issuecomment-576009944
Forum: Plugins
In reply to: [WP Super Cache] how to exclude file name from cachingthat is => “You can exclude in advanced options”
please use English ??This happens only with Experimental parser
Forum: Developing with WordPress
In reply to: Getting count of comments after filtered query?Hi,
from the code seemsget_comments_number()
is not using your action.Can you try use
count()
onget_comments()
or usecount => true
inget_comments()
options?https://codex.www.ads-software.com/Function_Reference/get_comments
Forum: Developing with WordPress
In reply to: Subcategory thumbnails within parent categoryHi,
check
<img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
should be
<img src="<?php echo z_taxonomy_image_url($child->term_id); ?>" />
Regards
- This reply was modified 6 years, 8 months ago by Diego Betto. Reason: formatting
- This reply was modified 6 years, 8 months ago by Diego Betto.
Forum: Developing with WordPress
In reply to: Problem with bootstrap nav toggleHi,
can you better explain “But it doesen’t work good” ?