kato
Forum Replies Created
-
Forum: Plugins
In reply to: [Enable Media Replace] Version 4 – Cannot replace pdfTry it anyway with the PDF.
I get the error, but it still works. It replaces the PDF with no issues.
Hi Notetoservices,
I revised my review with the new information that you’re working on a fix. Thanks.
Looking forward to re-installing.
BTW, WP-Engine encourages their users to use the latest version of PHP whenever possible, even though PHP 7.4 deprecates .htaccess (!) 🙂
WPEngine sent an automated error linked to this plug-in (by name.) So what I thought was a takeover, might have just been the WP functionality displayed improperly.
For anyone who wants to debug the error is on line 97. Here’s the log file sent by WPEngine:
Error Details ============= An error of type E_ERROR was caused in line 97 of the file /nas/content/live/MySite/wp-content/plugins/upload-media-by-url/inc/umbumedia.php. Error message: Uncaught Error: Using $this when not in object context in /nas/content/live/MySite/wp-content/plugins/upload-media-by-url/inc/umbumedia.php:97 Stack trace: #0 /nas/content/live/MySite/wp-includes/class-wp-hook.php(287): umbu_CustomMediaUI::umbu_mediaButton('') #1 /nas/content/live/MySite/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters('', Array) #2 /nas/content/live/MySite/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #3 /nas/content/live/MySite/wp-includes/media-template.php(273): do_action('post-plupload-u...') #4 /nas/content/live/MySite/wp-includes/class-wp-hook.php(287): wp_print_media_templates('') #5 /nas/content/live/MySite/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array) #6 /nas/content/live/MySite/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #7 /nas/content/live/MySite/wp-admin/admin-footer.php(78): do_action('admin_footer', '') #8 /nas/content/live/MySite/wp-admin/posForum: Plugins
In reply to: [WP Dashboard Notes] Not working in WP 5.xIt actually works in WP 5.2.1. It’s just hard as heck to find.
I was about to give up. I came here to report the error and found helpful screenshots.
It’s not intuitive, but here’s a hint: in the dashboard, it’s next to the word “Howdy.” 😉
Forum: Plugins
In reply to: [LH Add Media From Url] Brilliant plugin works with 4.9.2Sorry, I did not mean to disrespect your product. Only sharing my experience to help other users who might be in the same predicament.
Your plug-in is great and just what I was looking for. Thank you for contributing this much-needed feature to the WordPress community.
Forum: Plugins
In reply to: [LH Add Media From Url] Brilliant plugin works with 4.9.2I tried a different plugin called “External Media” and it accepts Facebook formatted URLs so it is probably just a matter of the complicated formatting of their URLs that begin with: https://scontent-ort2-1.xx.fbcdn.net/v/t1.0-…
Forum: Plugins
In reply to: [Hide Title] Leaves residue.In case this is useful to other people – I began looking for another plug-in, and then realized what I’m trying to accomplish does not require an additional plug-in at all. In fact, I was vastly overcomplicating things.
My purpose was to use a short title for the page in my menu, for example: “About,” while on the about page, I wanted to hide “About” and replace it in the body with my full “About this collector’s group” <– more detail. Not best practice I know, but I wanted to do it anyway.
Long story short: in your dashboard, you can go to Appearance –> Menus and then select an abbreviated page title that will show in your menu. Problem solved with built-in WP functionality.
Maybe someone else will find this helpful…
Forum: Plugins
In reply to: [Hide Title] Leaves residue.I should have read the reviews before installing this. Luckily I only messed up one page which was easily recoverable.
This plugin works on the front end by wrapping the titles you want hidden in span tags that it then hides with CSS (I presume.) In my case, it appears to clash with some plug-in and adds redundant tags which show up in WP’s title field in the database.
I’d prefer to find a plug-in that withholds the output of the title inside the WP engine somehow.
Just letting you know, I’m getting a similar error when I try to activate the iThoughts plugin. Same line 191. It says:
Parse error: syntax error, unexpected ‘[‘ in /var/www/vhosts/moocows/wp-dir/wp-content/plugins/ithoughts-tooltip-glossary/class/shortcode/GlossaryList.class.php on line 191
That works, thank you!
Forum: Plugins
In reply to: [th0th's Movie Collection] Plugin Doesn't WorkSuzieQue, add this code to your theme’s function.php file:
add_action('init', 'movies_need_categories_and_tags'); function movies_need_categories_and_tags() { register_taxonomy_for_object_type('category', 'movie'); register_taxonomy_for_object_type('post_tag', 'movie'); }Or, to make it work with all post types, change line 93 to:
$post_types = array_values( get_post_types( array( ‘public’ => true, ‘_builtin’ => false ), ‘names’ ) );
Although I’m not sure that wouldn’t bloat the bejeezus out of your database.
FWIW – future strugglers, it’s butt-simple to edit line 93 of the plug-in to something like this:
$post_types = apply_filters( ‘epr_post_types’, array( ‘post’, ‘page’, ‘report’ ) );
It works, just replace ‘report’ above with your CPT name.
It would be nice to do this the proper way, but for now, it’s working.
Totally possible stock; just took me a bit to figure it out.
Goto: ExactTarget Feeds, then look for a checkbox at the bottom labeled “Opt-in Condition.”
Forum: Plugins
In reply to: [Co-Authors Plus] How do I add a custom value when selecting author?Hey thanks.
i’m wondering if I can’t just hook into the post type registration in my functions file like this:
$post_type_args = array( 'show_in_nav_menus' => true, 'rewrite' => array('slug' => 'contributors', 'with_front' => false ), ); register_post_type('guest_authors',$post_type_args); }