Duke
Forum Replies Created
-
+1
Forum: Plugins
In reply to: [Admin Menu Manager] Doesn't show "Toolset" grouped menu itemGreat! thanks a lot for your work ??
Hello Paulo! thanks for the answer ??
I still see the messages for html (and script) undefined, however the source seems fine now. In the transformed markeup it stripped the <script> tags – they were Gists embeds – but besides that it’s all good. Other posts seem fine too.
I assume script embeds wont show up then? I checked the FB formatting and there’s nothing to allow scripts to load or to display code… so I guess nothing to do about this, right?
What is the issue about though? Is there something I could do on my end? I dont understand what the “No rules defined for <html> in the context of InstantArticle” is about.
Same here.
Also, the source markup is empty, while the transformed one is wrong..
Would be great if we could manually edit the structure.Forum: Plugins
In reply to: [Admin Menu Manager] Doesn't show "Toolset" grouped menu itemI wanted to add, that even if I navigate directly to one of the “hidden” submenu links, it shows the WP error “you are not authorized to access this page etc”…. like if the link, not only doesnt show in the menu, but like it doesnt exist at all! :/
Forum: Plugins
In reply to: [iSlidex] add POST_TYPE supportThank you!
Sorry haven’t been working on this plugin in a long time, since there’s so many advanced alternatives nowadays.
I’ll definitely add your solution if/when I decide to work on it again.Forum: Plugins
In reply to: [Adminimize] Not hiding items on dashboardHad the same issue.
I can confirm that with the latest zip provided, things work perfectly fine now! ?? Thank you!Thank, that’s great.
Any idea when it would be ready?Forum: Plugins
In reply to: [Memcached Object Cache] wp_cache_get() not supporting 4th parameter $foundWe decided to used the forked one.
The fact this one hasnt been touched in 2 yrs, considering all the things that have changed in the meantime, isnt reassuring.
Outlook doesnt seem to export categories in the first place (on .ics), but it does on csv.
However, since Im working with an ics that is shared online automatically, I dont have the option (nor I would want to) to manually export it to csv first, the convert it to ics, then republish it online… then have the plugin import it.*sigh*
You should refer to this and add CSS rules to style the buttons.
if (is_post_type_archive()) { remove_action('wp_print_styles', array('CMTooltipGlossaryFrontend', 'cmtt_glossary_css')); remove_action('wp_enqueue_scripts', array('CMTooltipGlossaryFrontend', 'cmtt_glossary_js')); remove_filter('the_content', array('CMTooltipGlossaryFrontend', 'cmtt_glossary_parse', 9999)); }
This files still get loaded:
Footer
– wp-content/plugins/TooltipProPlus/assets/js/modernizr.min.js
– wp-content/plugins/TooltipProPlus/assets/js/tooltip.jsHeader
– wp-content/plugins/TooltipProPlus/assets/css/tooltip.css
– some inline css <style id=”tooltip-inline-css” type=”text/css”>..</style>
– a whole font <link id=”tooltip-google-font-css” media=”all” type=”text/css” href=”//fonts.googleapis.com/css?family=Droid+Sans” rel=”stylesheet”>Please advise on how to programmatically remove ALL and ANY of the plugin’s file, when needed.
Thank you
Forum: Plugins
In reply to: [PrettyPress] Is the plugin still mantained? (both free and pro)Too bad it took so long to reply…
May be mantained, just not enough to recommend the plugin to clients, if we need fast support.
Thanks anyway.And here’s a revised custom lang selector to go with it.
// Custom Lang Selector if (function_exists('icl_get_languages')) { // Native Lang Name function get_language_name($code=''){ global $sitepress; $details = $sitepress->get_language_details($code); $language_name = $details['display_name']; //english_name //display_name return $language_name; } // Custom Lang Selector function languages_list_header() { $languages = icl_get_languages('skip_missing=0&orderby=custom'); if(!empty($languages)){ foreach($languages as $l) { if($l['active'] == '1') { $active_class = ' active'; } else { $active_class = ''; } if(is_page_template('template-idx.php') && $l['active'] != '1') { echo '<li><a class="btn'.$active_class.'" href="'.$l['url'].str_replace('/'.ICL_LANGUAGE_CODE.'/', '', $_SERVER["REQUEST_URI"]).'" title="'.get_language_name($l['language_code']).'" role="button">'.$l['language_code'].'</a></li>'; } else { echo '<li><a class="btn'.$active_class.'" href="'.$l['url'].'" title="'.get_language_name($l['language_code']).'" role="button">'.$l['language_code'].'</a></li>'; } } } } }
Even if people paid for your plugin (for which I haven’t seen improvements in a very long time), you don’t care if people can’t actually use it.
Your support keeps saying that your dev team can’t do it or that it’s WPML that should fix it (lol)…
Never again I will recommend your plugin to clients, which isn’t the only one on the market in case you weren’t aware.
Also, I fixed your plugin.