robin_dean
Forum Replies Created
-
This reply isn’t helpful at all. If you “understand that space is at a premium”, don’t force us to double the storage use with your huge “thumb”nails.
- This reply was modified 2 months ago by robin_dean.
Forum: Fixing WordPress
In reply to: Weird style code in my website“Malicious”, no … but it doesn’t validate.
Now that we know it IS wordpress and NOT “added by anything, nothing to see here, move along, no help to be given” I gotta say … @gleysen well done! Thank you.
Via functions.php it’s pretty easy to filter out. Here’s my solution:function remove_auto_sizes_css_fix($add_auto_sizes) {return false;}
add_filter(‘wp_img_tag_add_auto_sizes’, ‘remove_auto_sizes_css_fix’);Forum: Plugins
In reply to: [Accept Stripe Payments] Invalid Markup (2.0.87)You do, though. I’m using it. And it’s great!
Forum: Plugins
In reply to: [Accept Stripe Payments] Invalid Markup (2.0.87)Right, however it’s the only reason I use the plugin … dynamically created digital products. I may eventually get my store together, which will sell static merch and downloads but because my site serves GPX files on a per-article basis, what I need is what I’m using.
Maybe there’s a way to dynamically create the products?Forum: Plugins
In reply to: [Accept Stripe Payments] Invalid Markup (2.0.87)The one from the plugin, as far as I know.
Example: [accept_stripe_payment name=”Product Name” price=”Product Price” url=”Product Download URL” button_text=”Product Button Text”]
It’s incredibly important that these shortcodes remain working/active. I *think* I remember some mention of them being discontinued … but because my products are dynamically generated, I have to use shortcodes for digital sales.- This reply was modified 6 months, 3 weeks ago by robin_dean.
Forum: Plugins
In reply to: [Accept Stripe Payments] Invalid Markup (2.0.87)Heads up!
I’m keeping my review at 4 stars but … it would appear that the shortcode is producing an empty action=”” attribute after all. I’ve revised all of my cache code to suit and am replacing the output using a server side buffer.
Just wanted to make sure you (at least) know about it.
Basically, I have to do this:
echo str_replace( array(” action = ””,’ action=””‘, ‘ class=”stripe-button-el”‘), ”,
do_shortcode(
‘[accept_stripe_payment name=”
… etc.Forum: Plugins
In reply to: [Accept Stripe Payments] Invalid Markup (2.0.87)It would appear you are correct! There’s something wrong with?my code.
Thanks for getting back to me and inspiring me to find the problem!
Regards.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Fatal Error on PluginThis has completely broken my /tag/ archives.
Fatal error: Uncaught TypeError: array_merge(): Argument #1 must be of type array, string given in /home/theridingobsession/tro.bike/wp-content/plugins/seriously-simple-podcasting/php/classes/controllers/class-frontend-controller.php:728 Stack trace: #0 /home/theridingobsession/tro.bike/wp-content/plugins/seriously-simple-podcasting/php/classes/controllers/class-frontend-controller.php(728): array_merge(‘any’, Array) #1 /home/theridingobsession/tro.bike/wp-includes/class-wp-hook.php(308): SeriouslySimplePodcasting\Controllers\Frontend_Controller->add_all_post_types_for_tag_archive(Object(WP_Query)) #2 /home/theridingobsession/tro.bike/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array) #3 /home/theridingobsession/tro.bike/wp-includes/plugin.php(565): WP_Hook->do_action(Array) #4 /home/theridingobsession/tro.bike/wp-includes/class-wp-query.php(1833): do_action_ref_array(‘pre_get_posts’, Array) #5 /home/theridingobsession/tro.bike/wp-includes/class-wp-query.php(3749): WP_Query->get_posts() #6 /home/theridingobsession/tro.bike/wp-includes/class-wp.php(663): WP_Query->query(Array) #7 /home/theridingobsession/tro.bike/wp-includes/class-wp.php(783): WP->query_posts() #8 /home/theridingobsession/tro.bike/wp-includes/functions.php(1332): WP->main(”) #9 /home/theridingobsession/tro.bike/wp-blog-header.php(16): wp() #10 /home/theridingobsession/tro.bike/index.php(17): require(‘/home/theriding…’) #11 {main} thrown in /home/theridingobsession/tro.bike/wp-content/plugins/seriously-simple-podcasting/php/classes/controllers/class-frontend-controller.php on line 728
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Shortcodes In Feed Not ExecutingMy settings already reflect this … but items within <content:encoded> tags aren’t honoring it.
Forum: Plugins
In reply to: [WPS Hide Login] Login Redirect Change?I’ve come up with a workaround for my site and thought maybe it would inspire something for yours.
In my functions.php file …
if ( is_admin() && !is_super_admin() && strpos($_SERVER['REQUEST_URI'], '/profile.php') === false ) { header( "Location: INSERT REDIRECTION HERE" ); exit(); }
Note that I’m not using a 301 message in the header redirect.
Forum: Plugins
In reply to: [WPS Hide Login] Login Redirect Change?Plus one on this.
Basically, I’m using the following but your plugin isn’t honoring it …
function login_redirect( $redirect_to, $request, $user )
{
return home_url( ‘members’ );
}
add_filter( ‘login_redirect’, ‘login_redirect’, 10, 3 );Forum: Fixing WordPress
In reply to: Search Form Problem Results (alt=””)The “Search Regex” plugin did the trick. Thank you!
Forum: Fixing WordPress
In reply to: Search Form Problem Results (alt=””)I do have “better search and replace”, though I only want to see the resulting post ids/links.
… but your saying there’s no “pre-encoded entry” version of my desired search that will produce the intended results, I gather.
- This reply was modified 4 years, 3 months ago by robin_dean.
That’s adorable.
Problem is, I’m attempting to use shortcodes of my own making that are in the content of blog posts.
That is to say, I’m using a monthly “latest posts” auto send that emails, well … the latest posts.
IN THOSE POSTS are shortcodes that I’d like to green light.
So, how do I do that?
Forum: Fixing WordPress
In reply to: Read Zip File ContentsUnderstood and thank you.