Caiapfas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to remove a link on img srcI use feedpress to take adult content RSS feeds. sometimes these images within the feed have urls so…
<a href="whatever.com"><img src="whatever"></a>
I want to remove the link off the first image of each post in the_content hook.I can provide links, but its adult content. let me know
Forum: Plugins
In reply to: [Recent Searches Widget] Title doesn't appearhere is the fix. I’m positive it could be better, but it works
//wp-content/plugins/recent-searches-widget/recent-searches-widget.php
find line 104 and oyu should seeextract( $args );paste this code after it
// Caiapfas quick and dirty patch 3/13/2013 $options = get_option( 'recent_searches_widget' ); if ( !is_array( $options ) ) { $options = $this->get_default_options(); } $title = $options['title']; $max = $options['max']; // end codei would also like to increase the size of the excerpt
Meaning Not show all the social networking buttons on a created page
Forum: Fixing WordPress
In reply to: plugin conflict?could it be the widget name for GD ratings or is it YAPB bug for uploaded images
you rock. thank you very much
How can I make this block more than one category?
<?php query_posts($query_string . '&cat=-5'); ?>Forum: Fixing WordPress
In reply to: How can I pull and display the logged in users name?i figured it out, but how can i make it say guest if the visitor is not logged in
Forum: Fixing WordPress
In reply to: How can I pull and display the logged in users name?Sorry I’m new to this, what is the exact code to show the username after they logged in
<?php
if(isset($_GET[‘author_name’])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));$curauth->nickname;
endif;
?>
????
Forum: Fixing WordPress
In reply to: How can I show RSS from on Category?thanks
Forum: Fixing WordPress
In reply to: How can I show RSS from on Category?I meant to say::
How can I pull RSS from only ONE Category? , but still have the main feed showing all.
Forum: Fixing WordPress
In reply to: how can I block a category from show in rss feed?thank you, worked perfectly..