Zoinks! Graphics
Forum Replies Created
-
Huh. Just did some digging into the plugin’s code and it appears that by design it hides the “Plugins” menu below the site name from WP admin screens via an “if” call. That seems counter to my needs as a site admin, so I just commented out if(!is_admin()) and now the menus are there!
I humbly recommend my solution be the default setting, with maybe a settings option for admins to hide the menu from admins if they so choose.
Hi, thanks for the fast response! However this is not resolved. It’s easier to show than try to explain, so please have a look (CLICK HERE).
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Time Zone SyncSame issue. Is there a hook that can fix this until it gets addressed in the next version?
Forum: Plugins
In reply to: [Admin Collapse Subpages] Collapsed by default? (one more time!)Gotcha, thanks for the response! I did see after some use that it defaults to the *last viewed* open/collapse state, so that’s just as good. 🙂
Forum: Plugins
In reply to: [WP Admin UI Customize] Add custom page to sidebarI need this too, but can’t find “custom nude”or anything like it… Help?
Forum: Plugins
In reply to: [Smart Slider 3] Can one set slides to publish/un-publish at specific times?Ah, just saw that the result of my slides expiring at midnight is this…
<!--Smart Slider #4 does NOT EXIST or has NO SLIDES!WordPress Shortcode-->…so I changed my code to…
if(strpos( do_shortcode('[smartslider3 slider=4]'), 'NO SLIDES' ) !== false) {} else { echo do_shortcode('[smartslider3 slider=4]'); }Hope that helps someone!
PS: It took a bit to get my slides to expire because for some reason both of them were defaulting to going off in 2028!!
Forum: Plugins
In reply to: [Smart Slider 3] Can one set slides to publish/un-publish at specific times?Thanks for this, it answered my (first) question as well!
Now I’ve got a follow-up Q… I created a slider to use as a scrolling info bar for snow closings. Since they obviously don’t ALWAYS appear at the site top, in my header I added this variable (where X = the slide group number)…
if(do_shortcode('[smartslider3 slider=X]')) { echo do_shortcode('[smartslider3 slider=X]'); }So will “do_shortcode(‘[smartslider3 slider=X]’)” become “empty” when its contained slides expire? Or do I have to manually unpublish that group?
Thanks for such a WONDERFUL and full-featured plugin!!
Forum: Plugins
In reply to: [Redirection] What happened to Target URL using CATEGORY ID?Hey John, any thoughts on how I can edit the code above?
Forum: Plugins
In reply to: [Redirection] What happened to Target URL using CATEGORY ID?Hi John, thanks for the reply!
I meant that putting a category ID as the target *DID* work last week (prior to v3) but now it *doesn’t* work any more. Now it’s even more of a mystery that you say that functionality hasn’t existed for a long time.
Anyway, doing a “deep dive” into your plugin code at redirection-front.php I found replace_special_tags() at…
/** * From the distant Redirection past. Undecided whether to keep */…that could be changed/amended to…
public function replace_special_tags($url) { if(is_numeric($url)) { $postUrl = get_permalink($url); if(!empty($postUrl)) { $url = $postUrl; } else { $catUrl = get_category_link($url); if(!empty($catUrl)) { $url = $catUrl; } else { $wooCatUrl = get_term_link($url,'product_cat'); if(!empty($wooCatUrl)) { $url = $wooCatUrl; } else { $eventCatUrl = get_term_link($url,'tribe_events_cat'); if(!empty($eventCatUrl)) { $url = $eventCatUrl; } } } } } else { $user = wp_get_current_user(); if(!empty($user)) { $url = str_replace( '%userid%', $user->ID, $url ); $url = str_replace( '%userlogin%', isset( $user->user_login ) ? $user->user_login : '', $url ); $url = str_replace( '%userurl%', isset( $user->user_url ) ? $user->user_url : '', $url ); } } return $url; }Using the code above should give your plugin the ability to convert category IDs into valid Target URLs. (I’m sure there’s a more elegant way of including custom category taxonomies than manually but that’s beyond me.)
Or if you could give me an idea how to hook replace_special_tags() from within my theme’s functions.php that would be cool too!
Forum: Requests and Feedback
In reply to: Add the ability to sort plugin search resultsGood to know I’m not the only one looking for this feature. I was sure I somehow missed it! Thanks @j09 for re-starting the discussion.
Hm, I looked again, and indeed your SUBMIT button is missing. Not just a CSS error hiding it, but no code for it at all. No idea what’s causing THAT, sorry, but perhaps this error that your site is throwing has something to do with it…?
Uncaught TypeError: Cannot read property 'data' of undefined at n (front.min.js:2) at c (underscore.min.js:5)@orbis1 Sorry, I went to your link above, saw a popup and figured your issue was solved. Upon further reading it also looks like my issue is different than yours. For me, the entire popup wasn’t displaying (until I opened my site in Chrome’s “Incognito” mode). For you, it appears that just the button used to subscribe is missing, right?
Please disregard. In another thread the developer wisely suggestion to try incognito mode. Now I can see my popup again!
@orbis1 Your sign up button appears to be working again. Can you share how you fixed it? I’m having the same problem!
Forum: Plugins
In reply to: [Easy Custom Auto Excerpt] Excerpts for most Archives …but not Categories?Sorry @keltrian I thought you were the plugin developer. After digging it appears that differentiating between ARCHIVE and CATEGORY *does* exist, but it’s a premium (paid) option.