Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author iandbanks

    (@iandbanks)

    First, thanks for giving Feature Me a try! I’m sorry you are having some issues with it though.

    This is a known issue that I’m fixing in version 1.1, but there is a simple work-around to get it set up.

    When you selecting the custom body option and leave it blank the message “Select a Featured Page or Post to display” will display. To remove this message if you don’t want any content just enter a space into the custom body field and the message will go away.

    Please let me know if that fixes your problem (I’ll resolve this topic). If you like the plugin, be sure to rate it!

    Be on the lookout for version 1.1 is coming soon ??

    Thread Starter Melting-Dog

    (@melting-dog)

    Thanks, thats worked.

    Is there any way to use the title as the link in stead of the ‘Learn More’ link?

    Plugin Author iandbanks

    (@iandbanks)

    Awesome.

    For the next question, are you just wanting the the heading title and the image and no learn more link?

    If so, with version 1.0 there is no option to remove that “learn more” link from the widget. If you add a class to your widget in the class field you could target it with css and do display:none for that link. Not ideal, I know.

    This is another feature that will be updated with the 1.1 release later this week.

    Thanks for your questions and great feedback!

    Thread Starter Melting-Dog

    (@melting-dog)

    Awesome – I was able to do it in JQuery.

    Code for the curious:

    $( ".customclass" ).each(function( index ) {
    
    	var featlink = $(this).find("a").attr("href");
    
    	$(this).find("h3").wrap( "<a href='" + featlink + "'></a>" );
    
    	$(this).find(".feature-me-link").hide();
    
    });
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Cant remove "Select a Featured Page or Post to display"’ is closed to new replies.