nomdecode
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pictures are not showing correct in FirefoxThe ads should stay at the same place where they are right now. Try it.
Forum: Fixing WordPress
In reply to: Pictures are not showing correct in FirefoxThe problem is caused by the ad above your image, which has a
float: left
which is pushing your image.Look for this element:
<div style="margin: 5px;padding: 0px;float:left">
and change the float:left to float:none. That should do it.
Forum: Fixing WordPress
In reply to: Excerpts with thumbnails for older posts?You can simply use a boolean in your loop to test if it is the first post :
Find this:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
and replace it with:
<?php if ( have_posts() ) : $first=true; while ( have_posts() ) : the_post(); ?>
You can then display the content or the excerpt (and other different markup) depending on the
$first
value:<?php if ($first) { $first=false; the_content(); } else the_excerpt(); ?>
Forum: Fixing WordPress
In reply to: Creating THIS form with WordPress? Help a Newbie?Gravity Form is an excellent and easy to use form builder plugin. It’s not free, but worth the price, especially if coding is not your cup of tea.
For a free alternative, Contact Form 7 is also good, flexible, although a little more complicated to use (you need at least some basic knowledge of html and css).
Forum: Themes and Templates
In reply to: What's The Best Way To Make a Table In WordPressYou could use this plugin: TablePress
Forum: Fixing WordPress
In reply to: Transfer subdomain site to domain, from one host to anotherOops. Sorry, missing link. Here it is: https://codex.www.ads-software.com/Moving_WordPress
Forum: Fixing WordPress
In reply to: Transfer subdomain site to domain, from one host to anotherForum: Plugins
In reply to: [Sponsors Carousel] PHP snippet outputs nothingYou’re welcome. Glad to hear everything works.
Forum: Plugins
In reply to: PHP function for removing plugin in header.phpIf you want to hide the slider from only one page:
<?php if ( !is_page ('your-page') ) { echo slider_pro(1, array("width"=>"100%", "height"=>350, "effect_type"=>"swipe")); } ?>
If you want to hide it on multiple pages:
<?php if ( !is_page (array ('your-page', 34, 'Another Page')) ) { echo slider_pro(1, array("width"=>"100%", "height"=>350, "effect_type"=>"swipe")); } ?>
Replacing ‘your-page’, ‘Another Page’ and 34 with your pages – either using the page slug (‘your-page’), page title (‘Another Page’), or post ID (34).
Forum: Plugins
In reply to: [Sponsors Carousel] PHP snippet outputs nothingTry
<?php echo do_shortcode ('[sponsors_carousel]'); ?>
https://codex.www.ads-software.com/Function_Reference/do_shortcode