Forum Replies Created

Viewing 15 replies - 1 through 15 (of 89 total)
  • Thread Starter robin_dean

    (@robin_dean)

    You do, though. I’m using it. And it’s great!

    Thread Starter robin_dean

    (@robin_dean)

    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?

    Thread Starter robin_dean

    (@robin_dean)

    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 3 months ago by robin_dean.
    Thread Starter robin_dean

    (@robin_dean)

    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.

    Thread Starter robin_dean

    (@robin_dean)

    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.

    This 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

    Thread Starter robin_dean

    (@robin_dean)

    My settings already reflect this … but items within <content:encoded> tags aren’t honoring it.

    @oversightwp

    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.

    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 );

    Thread Starter robin_dean

    (@robin_dean)

    The “Search Regex” plugin did the trick. Thank you!

    Thread Starter robin_dean

    (@robin_dean)

    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 3 years, 11 months ago by robin_dean.
    Thread Starter robin_dean

    (@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?

    Thread Starter robin_dean

    (@robin_dean)

    Understood and thank you.

    Make sure it’s tolerant of output buffering while you’re at it. My site captures the buffer for minor tweaks before sending it to the client browser. Use of your shortcode or even the php option doesn’t play well with that.

    That was my initial solution once I discovered the issue. That shut my entire site down (only output was a blank white page).

Viewing 15 replies - 1 through 15 (of 89 total)