fast4u
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Problem with Installing WordPress on IISSo far seems to be functioning just fine. No problem are being seen now.
So I guess the issue was the caching. But still weird.
Thank you everyone who responded.
Forum: Installing WordPress
In reply to: Problem with Installing WordPress on IISPHP threaded how do I find out?
Site URL is set. I turned off the server caching that fixed the issue. Do you think that was the only thing?
Can’t give u site URL it is not attached to a domain.
Forum: Plugins
In reply to: [WooCommerce] If no price included display TextI figured it out myself. If anyone needs this here is the code:
add_filter('woocommerce_get_price_html','members_only_price'); function members_only_price($price){ if($price == ''){ return 'Call for Price!'; } else { return $price; }
Forum: Plugins
In reply to: If no price included display Textthank you for the lead, I will repost now.
Forum: Plugins
In reply to: If no price included display TextHere is the code i found:
add_filter('woocommerce_get_price_html','members_only_price'); function members_only_price($price){ if(is_user_logged_in() ){ return $price; } else return 'Call for Price!'; }
how can I modify it to do what I need to do?
Forum: Themes and Templates
In reply to: Reading settings problemiLost
i download it from the main theme directory!
Forum: Themes and Templates
In reply to: Reading settings problemhere you go
<?php get_header();?> <div id="content"> <article> <?php if(have_posts()){while(have_posts()){the_post();?> <section id="post-<?php the_ID();?>" <?php post_class();?>> <div class="title"> <h2><?php the_title();?></h2> <small><?php the_time('m.d.Y');?>, <?php the_category(', ');?>, by <?php the_author_posts_link();?><?php if(function_exists('the_views')){?>, <?php the_views();}?>.<?php edit_post_link(__('Edit','iLost'),' [',']?');?></small> </div> <div class="entry"> <?php the_content(); wp_link_pages('before=<nav class="post-link">&after=</nav>&next_or_number=number&pagelink=<span>%</span>');?> </div> <div class="post-meta"> <?php edit_post_link(__('Edit','iLost'),'<span class="alignright"> [',']</span>');?> <?php the_tags(__('Tags: ','iLost'),' | ','');?><div class="clear"></div> </div> <nav class="post-nav"> <span class="previous"><?php previous_post_link('%link');?></span> <span class="next"><?php next_post_link('%link');?></span> <div class="clear"></div> </nav> </section> </article> <?php get_sidebar();?> <div class="clear"></div> </div> <?php get_footer();?>
[Please post code or markup snippets between backticks or use the code button. Or better still – use a pastebin. Your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
Forum: Themes and Templates
In reply to: [Leaf] remove Posted by Adminok will do
Forum: Themes and Templates
In reply to: [Leaf] remove Posted by Adminis there a way to just remove the whole posted by: admin. when i use the css code. it only removes the name. i want posted by: admin removed. all together. but the categories and date to be there.
Forum: Themes and Templates
In reply to: Menu HIghlightingMy apologies, for miss-posting.
As usual I never find help on these forums.
Forum: Themes and Templates
In reply to: Menu HIghlightingThank you for your reply.
Now it is highlighting everything ??
can you see this code please.
Thank you
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active { color: #FFF; background: #B81007; } .current-menu-item a { color: #FFF !important; background: #B81007; } .current-menu-parent a { color: #FFF !important; background: #B81007;
Forum: Fixing WordPress
In reply to: DIsplaying Text or image only on homepagePLEASE HELP!!!!
Forum: Fixing WordPress
In reply to: Permalink Settings were changed and now “The page cannot be found”This does not really help me!
But I have seen pages, using structure category/post
Can somebody help me!
Forum: Fixing WordPress
In reply to: WordPress with different widgets in different categoriesThat worked, great Thanks for your help!
Forum: Fixing WordPress
In reply to: WordPress with different widgets in different categoriesThank you for your help, I will look into that!