Forum Replies Created
-
#16051On March 14, 2012 at 3:16 pm
First create a “Playstation” category and mark all the playstation posts with that category and then You can go to Appearance> Menus and add the category “Playstation” to your menu.
#16046On March 14, 2012 at 2:51 pmJust checked your site. The slider is working fine. Currently there are two slides in the slider.
#16043On March 14, 2012 at 2:35 pmClick the “use as Featured image”
You can only add on e image per slide.
#16024On March 13, 2012 at 3:05 pmYour child pages wont be automatically added to the menu. You will have to add them manually from Appearance> Menus
drag your menu items under the product menu and drag them a little right to make them show under the drop down list of “product” menu and then save.
#16020On March 13, 2012 at 2:16 pmYou are trying to add the child page to the menu? Go to Appearance> Menus and follow this instruction:
http://www.expand2web.com/blog/wordpress-30-custom-navigation-menus-video/
#15989On March 11, 2012 at 7:49 pmare you adding the “http://” at the start of your links?
#15938On March 10, 2012 at 5:16 pmIt was pretty old. try this plugin:
#15932On March 10, 2012 at 3:06 pmTry this plugin: http://wordpress.org/extend/plugins/front-page-excluded-categories/
For the twitter problem, open up twitter_widget.php from widgets folder of the AMphionPro folder and open it up with notepad and replace all the code with the code you find in this link:
#15930On March 9, 2012 at 6:52 amThis is how you should do this:
Create tow new categories something like this: “Football Boots” and “Football topics”
Then mark all the football boots related posts as “Football Boots” and football posts related posts as “Football topics”
Then go to Appearance> Menus and add those 2 categories to your menu.
#15898On February 27, 2012 at 2:51 pmyes you can. what kind of ad are we talking about here? Adsense banner code? or custom image banner?
#15875On February 25, 2012 at 5:10 pmlooks like you removed an extra div. Go to Appearance> Editor and select “layout1.php” and replace the whole code with the code you fidn in this page: http://pastebin.com/xnjT7Ufn
#15873On February 25, 2012 at 12:52 pm1. While editing the pages in the post editor page, find the “Screen options” button from top and click the “Discussions” option. now notice a discussion box appeared below the editor. disable commenting on page from there. you will have to do that for every page.
2. Go to Appearance> Editor and select “layout1.php” file from right and remove these lines:
<div class="post_meta"><div class="block_comm"><?php if (!empty($post->post_password)) { ?>
<?php } else { ?><div class="comments"><?php comments_popup_link('0 <span>Comm</span>', '1 <span>Comm</span>', '% <span>Comm</span>', '', __('Off')); ?></div><?php } ?></div></div>#15871On February 25, 2012 at 12:30 pmyou mean disable comment system in pages? only the pages? or the posts too?
#15700On February 25, 2012 at 8:22 amlooks like a plguin conflict. If you can share your site address and id/pass though this page:
http://www.towfiqi.com/contact
I will check the issue and try to fix it.
#15728On February 3, 2012 at 7:03 amHere is how you can add a second menu in the footer:
You will have to edit 3 files.
1. Go to Appearance >Editor and select “functions.php” file from right and find this line:
//Register Menus
register_nav_menus( array(
'primary' => __( 'Primary Navigation', 'Triton' )
) );And replace it with:
//Register Menus
register_nav_menus( array(
'primary' => __( 'Primary Navigation', 'Triton' ),
'footer_menu' => __( 'Footer Navigation', 'Triton' )
) );2. Then select “footer.php”from right and find this line:
<div class="copytext">
<?php echo $option['trt_foot']; ?>
</div>And replace it with:
<div class="copytext">
<?php echo $option['trt_foot']; ?>
</div>
<div id="footmenu">
<?php wp_nav_menu( array( 'container_class' => 'menu-footer', 'theme_location' => 'footer_menu', 'depth' => 0, 'fallback_cb' =>false) ); ?>
</div>3. Then select “stylesheet” from right and add this line to the very bottom:
#footmenu{ float:right;font-size:12px; float:left; width:60%;}
.menu-footer{ float:right; margin-bottom:15px;}
#footmenu ul{ margin:0; padding:0;}
#footmenu ul li{ float:left; padding:0 10px; list-style-type:none;}
#footmenu ul li a{color:#424242; text-decoration:none;}
#footmenu .sub-menu{ display:none;}Thats all, Now you can add menu to the footer from Appearance> Menus
#15727On February 1, 2012 at 11:17 amI dont understand your first question. Can you elaborate? What are trying to achieve? What plugin are you using, what does it do?
It was a typo, I guess. the theme only has one menu. Unlimited skins means, unlimited color combination, which results unlimited skins. Go to Appearance> Triton Options>Style to set the color of each element. Sadly you cannot export the color combinations.
You can always get a refund if you are not happy with the product. 🙂
#15721On February 1, 2012 at 11:08 amGo to Appearance> Editor and select “page.php” from right and remove this line:
<?php get_sidebar(); ?>
#15687On January 31, 2012 at 11:08 amAre you sure? Did you clear your site’s cache and browser cache?
#15697On January 31, 2012 at 7:54 amSounds like a plugin conflict, what plugin did you install last? can you try disabling it?
#15695On January 31, 2012 at 7:37 amThe
"/>
is caused by the newsletter plugin you are using.do you see the color palette? or are they missing?
#15661On January 31, 2012 at 7:20 amHow about this, Add thisline to your stylesheet:
#related .post_image .imgwrap{height:auto!important;}
let me know if you like the change.