Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Adblade

    (@adblade)

    I do not understand what issue you are having? Are you trying to have one shortcode call another? Do you have a screenshot of what is happening?

    Thread Starter PPDPurveyor

    (@peoples_pundit)

    I don’t have a screenshot because I can’t leave the article looking like that.

    But no, the problem is that the ads are being called by a totally irrelevant shortcode.

    For instance, the following shortcode (which creates the tooltips seen in the article I linked,):

    [content_tooltip id=”38038″ title=”Quinnipiac University (Q-Poll)”]

    the ads will appear immediately after the shortcode and break up the paragraph. Then, the paragraph continues afters the Adblade tag content.

    Plugin Author Adblade

    (@adblade)

    I am looking into the issue now, but don’t see any problems on our end. The code (see below) is very simple for this feature. Are you sure you didn’t have a copy of our ad tag at the end of the tooltip code? Would it be possible for me to see the code for the other plugin?

    function adblade_ads_within_shortcode( $atts ) {
        $options = get_option( ADBLADE_OPTIONS_KEY );                                                                                                                                    
    
        if ( array_key_exists( 'adsWithinTag', $options ) && ! empty( $options['adsWithinTag'] ) ) {
            return $options['adsWithinTag'];
        }                                                                                                                                                                                
    
        return '';
    }
    add_shortcode( 'AdsWithin', 'adblade_ads_within_shortcode' );
    Thread Starter PPDPurveyor

    (@peoples_pundit)

    Yup, you’re right. That looks pretty simple. You sure can if you email me at [email protected]. Perhaps it’s a caching issue?

    Plugin Author Adblade

    (@adblade)

    I will follow up with them and see if there is anything we can do.

    Plugin Author Adblade

    (@adblade)

    I have not been able to replicate this issue with other shortcodes and have not heard back from the other developers. Can you open a ticket in their plugin to see if they can reproduce the issue?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Firing on Tooltip Shortcodes with longstring ID’ is closed to new replies.