BlueSoft
Forum Replies Created
-
Forum: Plugins
In reply to: Sexy Bookmarks not Showinghttps://www.theinnocentabroad.com/?p=27
I went to that url and I see sexy bookmarks is there..
Forum: Plugins
In reply to: Sexy Bookmarks not ShowingLooks like this Single Post (single.php)
Forum: Plugins
In reply to: Sexy Bookmarks not Showingshould be under Appearance>Editor
Forum: Plugins
In reply to: Different header for each pageAlso you said each page (6 posts) If you are actually using page templates then you will not need to download the plugin stated above. You simply add this snippet of code instead
<?php /* Template Name: posttemplate1 */ ?>
After that it’s pretty much the same process only you will be able to define the template under pages>edit and select the desired template via the drop down box.
Forum: Plugins
In reply to: Different header for each pageAlright.. It’s a little bit of a process but let’s do it. I am assuming you know how to use FTP like Filezilla. First since you want to change the header for each post you will have to have a different post template for each post as well. You will do this by installing the plugin that will allow you to pick different post template. Download “Custom Post Template”.
After downloading that you will need to create 5 different post templates. drag and drop 5 .txt files into your theme files via FTP. For my sanity let’s name them like this
posttemplate1
posttemplate2
posttemplate3
posttemplate4
posttemplate5Now delete the .txt extension and add .php to the end of each file name.
Now go to Appearance>Editor on your WP admin and drop this line of code at the top of each blank template.
posttemplate1
<?php /* Template Name Posts: posttemplate1 */ ?>
posttemplate2
<?php /* Template Name Posts: posttemplate2 */ ?>
posttemplate3
<?php /* Template Name Posts: posttemplate3 */ ?>
posttemplate4
<?php /* Template Name Posts: posttemplate4 */ ?>
posttemplate5
<?php /* Template Name Posts: posttemplate5 */ ?>
After adding the code to each respective template copy and paste all of the code in your single.php file into each one of those 5 templates under the snippet of code that is already their.
Now create 5 headers with .txt extensions
header1
header2
header3
header4
header5and drag and drop them into your theme folder via FTP
delete the .txt extension and add the .php extension.
You do not need to use the php code above. You will simply call on these header templates by replacing this
<?php get_header(); ?>
With
<?php include (TEMPLATEPATH . '/header1.php'); ?>
<?php include (TEMPLATEPATH . '/header2.php'); ?>
<?php include (TEMPLATEPATH . '/header3.php'); ?>
<?php include (TEMPLATEPATH . '/header4.php'); ?>
<?php include (TEMPLATEPATH . '/header5.php'); ?>
in each one of your 5 different post templates. After you have finished editing your 5 new header files and have them the way you want them go to your post>edit screen and choose the template for each post via the drop down box.
I think I got all that right.. Let me know if you have any problems..
Forum: Plugins
In reply to: Sexy Bookmarks not ShowingJust hard code it into your single.php file using this line of code
<?php if(function_exists('selfserv_sexy')) { selfserv_sexy(); } ?>
If you want it below each post place it after
<?php the_content(); ?>
Forum: Plugins
In reply to: [Plugin: Page Meta] How do i get the descr and keywords??I recommend installing the plugin All In One SEO Pack. This will generate the title, description, and meta keywords for you. You also have the option to specify The title, description, and keywords if you don’t like the ones it is generating.
Forum: Plugins
In reply to: What plugin i need…That is the elegant grunge theme which can be found at the following link..
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Paginate won’t work on Archive PgJust use the plugin WP-PageNavi. By far the best plugin for pagination. You can even style everything in the plugin’s css file.
Forum: Plugins
In reply to: Need random youtube video pluginYou will want to use the Google Ajax API for youtube. It’s not a plugin but will work just as well. You will have to add the feed. Visit my article at https://www.articledirectoryproject.com/show-youtube-related-videos-on-your-wordpress-site/
and be sure you take the time to read the setup at Google as well https://www.google.com/uds/solutions/videobar/reference.html
Forum: Plugins
In reply to: Do any related posts with thumbnails plugins make thumbnails for video?check out my article at
https://www.articledirectoryproject.com/show-youtube-related-videos-on-your-wordpress-site/
This breaks down how to use the Google Ajax API. Just read through article. You can use current Tags and or current Category as keywords for the youtube related videos.