WP SITES
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Removing The Title of WordPress PagesWhy don’t you just remove it from the page
Hello Rohahas. Yes. Depends on which theme you’re using. Where did you put that code? You should never put code in your parent themes template files. All customization should be done in the child themes functions.php file as seen in my code above which works perfectly.
The difference between customizing a free theme and a design framework are huge. My code uses a header hook whereas most free theme don’t offer hooks which makes it harder to modify and customize WordPress.
You will need to create multiple sliders.
On top of this, you’ll need to enter the page i.d for each in the code as well as the i.d for each slider.
Here’s some code i tested for 4 different sliders displaying on different pages.
function wpsitesdotnet_multiple_soliloquy_sliders() { if (is_home() ) soliloquy_slider( '11444' ); elseif (is_page(11449)) soliloquy_slider( '11458' ); elseif (is_page(11450)) soliloquy_slider( '11461' ); elseif (is_page(11451)) soliloquy_slider( '11463' ); }; /** * @author Brad Dalton - WP Sites * @link http://wpsites.net/ **/ add_action('genesis_header','wpsitesdotnet_multiple_soliloquy_sliders');This code assumes you’re using the Genesis framework and want to output your slider in the header using the genesis_header hook.
The hook position, conditional tags and i.d’s for pages and sliders can all be changed to suit your needs.
Forum: Plugins
In reply to: [Fonts] add family fontThis plugin uses the fonts which are supported by all browsers.
You’ll need to install custom fonts manually and upload them to your server.
Yes. Here’s the solution http://ww.wp.xz.cn/support/topic/code-for-implementing-only-on-the-home-page?replies=3#post-4190900
I’ve written a complete guide to installing Slide Deck in any location in any theme.
Or you could use this:
Paste this code in your header.php file
<?php if (is_home()) { echo do_shortcode('[SlideDeck2 id=007]'); } ?>Change the i.d (007) to your own.
Or use this code if you’re using a static page as your home page rather than the default.
<?php if (is_front_page() ) { echo do_shortcode('[SlideDeck2 id=007]'); } ?>Forum: Plugins
In reply to: [SlideDeck 2 Lite Responsive Content Slider] Display on homepage ?Paste this code in your header.php file
<?php if (is_home()) { echo do_shortcode('[SlideDeck2 id=007]'); } ?>Change the i.d (007) to your own.
I’ve written a complete guide to installing Slide Deck in any location in any theme.
Forum: Plugins
In reply to: [Easing Slider] Easing Slider Only on the HomapageGreat slider Matthew.
Always works and you can choose from multiple installation options.
I’ve also created a video installation guide which works with any theme.
Forum: Plugins
In reply to: [Easing Slider] Easing Slider Only on the HomapageYou’ve pasted the wrong code.
That code above, goes in your child themes functions file.
The code is for your home.php file template:
<?php if ( function_exists( "easingsliderlite" ) ) { easingsliderlite(); } ?>Forum: Plugins
In reply to: [Simple Twitter Connect] Is new Update available?This links broken Otto http://ww.wp.xz.cn/extend/plugins/simple-twitter-connect/description/
Forum: Localhost Installs
In reply to: Can't access the database.I’d suggest you install WordPress locally using instantwp.com
Easiest way to do it.
You can use the WP Migrate DB plugin to import your DB.
Forum: Themes and Templates
In reply to: [Visual] ModificationsWhat theme are you using?
Link to your site and i’ll inspect it using Firebug.
Forum: Plugins
In reply to: [Genesis eNews Extended] Submit Button Not DisplayingOk thanks Brandon.
Forum: Fixing WordPress
In reply to: running on different browsersAny pictures. Do you mean you have lost them?
Forum: Fixing WordPress
In reply to: running on different browsersYou might consider updating to the Twenty Twelve theme.