klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast seo content optimization not workingReceiving errors:
TypeError: u.select(...) is null[Learn More] wp-seo-post-scraper-1111.min.js:3659 isAnnotationAvailable wp-seo-post-scraper-1111.min.js:3659 value wp-seo-post-scraper-1111.min.js:8227 <anonymous> wp-seo-post-scraper-1111.min.js:11297 jQuery 4 ReferenceError: YoastSEO is not defined[Learn More] wp-seo-post-scraper-1111.min.js:3112 u wp-seo-post-scraper-1111.min.js:3112 exports wp-seo-post-scraper-1111.min.js:3125 saveScores wp-seo-post-scraper-1111.min.js:12372 <anonymous> (index):976 runKeywordAnalysis analysis-1111.min.js:21 runAnalyzer analysis-1111.min.js:21 _pureRefresh analysis-1111.min.js:21 <anonymous> (index):972 z analysis-1111.min.js:1 y analysis-1111.min.js:1 y analysis-1111.min.js:1 refresh analysis-1111.min.js:21 pluginsLoaded analysis-1111.min.js:21 _pollLoadingPlugins analysis-1111.min.js:14 <anonymous> (index):972
Forum: Plugins
In reply to: [Yoast SEO] How to set a longer sitemap transient expiration time ?For a quick fix, you can set values to transients on the options page:
/wp-admin/options.php
- This reply was modified 5 years, 6 months ago by klihelp.
Forum: Plugins
In reply to: [WP API Menus] Invalid meta.links in /menu-locations/in wp-api-menus-v2.php, fix $rest_url to use get_plugin_namespace()
public static function get_menu_locations( $request ) { $locations = get_nav_menu_locations(); $registered_menus = get_registered_nav_menus(); // $rest_url = get_rest_url() . self::get_api_namespace() . '/menu-locations/'; // to: $rest_url = get_rest_url() . self::get_plugin_namespace() . '/menu-locations/';
Forum: Plugins
In reply to: [Menu Swapper] WP-API missing data for menu locationAll ok,
The issue is with wp-api-menus plugin.
https://www.ads-software.com/support/topic/invalid-meta-links-in-menu-locations/Forum: Plugins
In reply to: [WP Gallery Custom Links] Link not workingRElated to the above example; Would it be possible to have link only on the first image?
Basically, making the custom links work when gallery setting setup to ‘none’ globally, or there should be an additional gallery setting firld for custom links.Forum: Plugins
In reply to: [Featured Galleries] in Admin: Metabox with thumbnail or medium imageDo you have the filter to the image size?
– ps: large images are too large ( ~1600px width..) for the admin display.Latest for both plugins – admin page for Analytics Dashboard works, but Settings page shows only the top navidation, but no body as that’s dependent on javascript.. also because of this javascript error, other admin functions are not working on the settings page like displaying sidebar submenu, or submenus for getting the Help panel..
I need to update the website with a new analytics account. So for the moment I have to use a different analytics plugin.Google Analytics by Yoast v.5.4.6
Custom Post Type UI 1.2.3Looking for this too..
Forum: Plugins
In reply to: [Topdash] Interesting, a suggestionYes, tooltips still remains a good idea.
Also, support default font colours.
Forum: Plugins
In reply to: [GC Social Wall] Server found a malwareMost malware scanners don’t really like Base64, the server gives a false positive, becasue it’s been exploited by too many malwares.
Forum: Plugins
In reply to: [Featured Galleries] in Admin: Metabox with thumbnail or medium image// Made it work when commented out some css attributes
// Plus php, js changes bellow#featuredgallerydiv ul li { margin:10px 10px 0 0; position:relative; /* width:100%; */ } #featuredgallerydiv ul li { /* width:32%; */ /* margin-right:1%; */ float:left; } #featuredgallerydiv ul li img { /* width:100%; */ height:auto; display:block; }
// PHP changes in metabox.php function fg_display_metabox()
// replace $galleryHTML lines with two lines, see// $galleryHTML .= '<li>'.$button.'<img id="'.$id.'" src="'.wp_get_attachment_url( $id ).'"></li> '; $image_attributes = wp_get_attachment_image_src( $id,'thumbnail' ); $galleryHTML .= '<li>'.$button.'<img id="'.$id.'" src="'. $image_attributes[0].'"></li> ';
// JS changes in admin.js#L79
// replace imageHTML// imageHTML += '<li>'+button+'<img id="'+attachment.attributes.id+'" src="'+attachment.attributes.url+'"></li>'; imageHTML += '<li>'+button+'<img id="'+attachment.attributes.id+'" src="'+attachment.attributes.sizes.thumbnail.url+'"></li>';
Forum: Plugins
In reply to: [Featured Galleries] Media Popup sidebar and textA similar plugin to this one:
https://www.ads-software.com/plugins/easy-image-gallery/Forum: Plugins
In reply to: [Featured Galleries] Media Popup sidebar and text2. Thank you! Option for this will be very good! Good start would be a filter for developers.
> I don’t know how to edit a core options page from a plugin though.
Inspire from these two plugins, they built similar options on Media Settings page:
https://www.ads-software.com/plugins/wp-resized-image-quality/screenshots/
https://www.ads-software.com/plugins/enable-image-scaling-option-on-upload/screenshots/Forum: Plugins
In reply to: [Featured Galleries] Image title/captionCreated a new thread for the popup sidebar, #ref:
https://www.ads-software.com/support/topic/media-popup-sidebar-and-textForum: Plugins
In reply to: [Featured Galleries] Image title/captionHi, I am looking at this issue as well, because want to change the image captions and other details.
Can you make it default to collapse mode?
ps: I don;t want to modify core plugin files as there will be a loss when you update the plugin. Forking the plugin just for this little modification is not good either.