Forum Replies Created

Viewing 15 posts - 421 through 435 (of 2,067 total)
  • Author
    Posts
  • Aakash
    Keymaster

    Hi there,

    Thanks for trying UFW plugin. UFW plugin is designed to be always on collapsible popup. So it was designed to be shown always irrespective of whether the user has closed it or not.

    I’ll sure add this to my todo list and see the efforts needed for this feature. I’m not sure if I can promise any date, but I’ll work towards to this request.

    Thanks,
    Aakash

    in reply to: How we do to remove
    Aakash
    Keymaster

    Hi @lemtechve,

    Thanks for using WP Socializer. Happy that you like it.

    This “dns-prefetch” is not added by WP Socializer.
    It is added by WordPress automatically.

    Though the home page may not any social icons, other pages on your site using the social icons. So this tag is would be helpful in that case.

    This is a useful feature and I would say you do not need to worry about this tag. This causes no harm.

    You can learn more about it below.

    Resource Hints in 4.6


    https://wordpress.stackexchange.com/questions/236705/remove-rel-dns-prefetch-href-maps-google-com-from-wp-head

    Thanks,
    Aakash

    in reply to: Page content
    Aakash
    Keymaster

    Hi John,

    Yes that would be possible. This can be only done in a static way (i.e copy the post content and paste it as shortcode content). It is not possible to dynamically fetch the post content. Shortcoder cannot be used for that purpose.

    Shortcoder is useful if you have a huge text/HTML which you want to create a short portable code.

    You can use a plugin like “display posts” to fetch the content using a shortcode.

    Display Posts – Easy lists, grids, navigation, and more

    Please let me know if have any more questions.

    Thanks,
    Aakash

    in reply to: Shortcode error
    Aakash
    Keymaster

    Hi,

    The image you shared is not linked correctly. Anyways, there is no limitation w.r.t Shortcode content. What you set as shortcode content will be inserted into the page.

    If the code you have works when it is inserted directly onto the page, then it will work when you insert it via shortcoder.

    Shortcoder creates short reusable tags for large code snippets.

    I would suggest paste the code directly onto to the page and share that error with the code provider. They should help you understand if something is missing in the code or some configuration is wrong.

    Thanks,
    Aakash

    in reply to: Shortcode error
    Aakash
    Keymaster

    Hi @jcranin89,

    I could not see any error in the screenshot or in the live page.

    Since shortcoder does not modify the shortcode content, it could be that there is some issue with the code itself? You can test/confirm this by pasting the code directly inside the post without using the shortcode.

    Thanks,
    Aakash

    in reply to: Random Thumbnails
    Aakash
    Keymaster

    Hi Sean,

    Thanks for using Super RSS Reader.

    When the RSS feed does not have any thumbnail, then it tries to fetch the first image in the post content. In your case, the first image is not recognized by the parser for somereason.

    This logic might need an enhancement. I’ll handle this in the next version.

    Thanks,
    Aakash

    in reply to: Location of Thumbnail Images
    Aakash
    Keymaster

    Excellent Sean! The plugin looks great on your website!

    in reply to: Location of Thumbnail Images
    Aakash
    Keymaster

    Sean,

    Please paste the CSS below in your theme settings. View the page source and ensure the CSS is present on the page.

    .srr-thumb {
        margin-right: 15px !important;
    }
    
    .srr-item-in.srr-clearfix {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    Thanks,
    Aakash

    in reply to: Location of Thumbnail Images
    Aakash
    Keymaster

    Hi Sean,

    Sure, this can be done. Can you enable feed title and thumbnail and share the page URL?
    I’ll check and share CSS.

    Thanks,
    Aakash

    in reply to: Shortcode Translation with WPML not working
    Aakash
    Keymaster

    Hi Sinota,

    I’m sorry to tell you that, there is no progress in this area 😔 I cannot find APIs from WPML to integrate.

    The current workaround is to create multiple separate shortcode for every language and use it the specific post language.

    Thanks,
    Aakash

    in reply to: script not working in a shortcode
    Aakash
    Keymaster

    Hi Alae,

    Can you please share the page URL where the shortcode is inserted?

    Thanks,
    Aakash

    in reply to: link dosn`t work
    Aakash
    Keymaster

    Hi Elias,

    Thanks for using Shortcoder.

    When a shortcode is missing the “name” attribute it will print “shortcode is missing name attribute”. I can see the same on your side.

    For somereason I guess the “name” attribute is stripped while saving the post? Please use the “shortcoder” block if you are using block editor.

    Please share a screenshot of the usage if issue persists.

    Thanks,
    Aakash

    in reply to: Feed is showing different results
    Aakash
    Keymaster

    Got it ! Thanks for confirming. Marking this as resolved.

    in reply to: Feed is showing different results
    Aakash
    Keymaster

    Hi Kevin,

    Are you using the same RSS feed url?

    Can you please confirm that?

    Can you also share the RSS feed url?

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title
    Aakash
    Keymaster

    Hi Kevin,

    I’ll add this option in the next version.

    For now add below PHP code to your website’s function.php file or using a custom plugin – https://www.aakashweb.com/articles/create-site-specific-wordpress-plugin-custom-code/

    function my_srr_modifier( $html, $feed_url, $feed_item ){
        $url = $feed_item->get_link();
        $html[ 'description' ] = '<a href="' . esc_attr( $url ) . '" target="_blank">' . $html[ 'description' ] . '</a>';
        return $html;
    }
    
    add_filter( 'srr_mod_item_html', 'my_srr_modifier', 10, 3 );

    Thanks,
    Aakash

Viewing 15 posts - 421 through 435 (of 2,067 total)

Subscribe to our Newsletter

Get updates on the WordPress plugins, tips and tricks to enhance your WordPress experience. No spam. View newsletter

By using this website, you agree to our Terms