Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #236292

    Dear Support: Can you kindly let me know how I can configure Subsribe to RSS Feed? Thanks

    #236697

    Hey Jae!

    Go to Appearance > Widget, look for the widget named “Enfold RSS Link and Twitter Account”, just drag it to the widget area of your preference and set your feed url.

    If you don’t know what is your feed url simply put: yourwebsite.com/feed

    Cheers!
    Josue

    #388463

    Hi Josue,

    I’ve looked at the code for the rss/twitter widget and what I dont undertand is that if one of them are empty (eg no url or link) then it shouldn’t show the empty one.

    In my case I only want to have the RSS icon show so I left the twitter link empty.

    if(isset($twitter))
    	{
    		$link = 'http://twitter.com/'.$twitter.'/';
    		$before = apply_filters('avf_social_widget', "", 'twitter');
    		$output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    	}

    shouldnt isset($twitter) return false if I haven’t added a URL in the twitter box?

    I could just throw out the twitter code all together but wouldnt that just be overwritten the next time I update the theme?

    • This reply was modified 9 years, 9 months ago by garyrgi.
    #388665

    Hey!

    Could be, i’ll report it to Kriesi. In the meantime you can use this CSS code to hide the twitter link:

    .asc_twitter{ display: none !important; }
    

    Regards,
    Josue

    #408845

    thanks for the notice. WIll be fixed with the next upgrade, the proper check needs to read

    if(!empty($twitter))
    

    :)

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Configuring RSS Feeds’ is closed to new replies.