Aditya Pandey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Tribube theme, problem on homepage postsWe provide support only theme that is accessible from WP.org.
Your theme is commercial theme and WordPress doesn’t provide support for commercial products.
https://codex.www.ads-software.com/Forum_Welcome#Commercial_ProductsAsk your vendor for theme support.
Forum: Themes and Templates
In reply to: [discover] Any way on not showing any blog post on the homepage?First off, setup Child Theme.
Then copy and paste content of yourindex.php
from parent theme tohome.php
in child theme folder (create file with this name).And then find and remove following code form
home.php
of child theme :<!--content--> <div class="row" id="content_container"> <!--left col--><div class="eight columns"> <div id="left-col"> <?php get_template_part( 'loop', 'index' ); ?> </div> <!--left-col end--> </div> <!--column end--> <?php get_sidebar(); ?> </div> <!--content end-->
Forum: Themes and Templates
In reply to: Dropdown menu in Creativix-WP falls behind slideshow…It is called z-index. Use firebug to quickly identify selectors. And always use child themes or plugins like Custom CSS Manager to keep your modifications safe from theme updates.
I can’t find the issue with dropdown on your site. Can you please explain/screenshot which part of site have that issue?
Forum: Themes and Templates
In reply to: Remove div tag (empty whitespace) from homepageGreat.
Forum: Themes and Templates
In reply to: Remove div tag (empty whitespace) from homepageCan you give me screenshot about this ‘space’, because I can’t find it.
Forum: Themes and Templates
In reply to: [Stitch] Few customizing questionsCan you me link to your site?
Forum: Themes and Templates
In reply to: Genesis child – dynamic header imageWe provide support for theme that is available in WordPress Theme Repository.
Contact your theme vendor for support.
Forum: Themes and Templates
In reply to: [Visual] Older posts?What’s your site URL?
Generally, it’ll automatically appear after it reached the limit. The limit you specified at your site’s “Dashboard> Setting> Reading> Blog pages show at most :“.Forum: Themes and Templates
In reply to: Software to edit phpFirst of all, I didn’t got a single point what you’re trying to say.
Secondly, it looks like you’re in wrong section or maybe wrong forum (I called up a Mod to look into this).Forum: Themes and Templates
In reply to: [Graphene] edit a link in the footerPut a slash before image location.
Corrected code:<?php if ( ! $graphene_settings['hide_return_top'] ) : ?> <li class="menu-item return-top"><a href="#"><img src="/wp-content/uploads/2013/05/arrow-top.jpg" alt="to top" title="Return to top" /></a></li> <?php endif; ?>
Forum: Themes and Templates
In reply to: FREE Responsive Theme with Vertical Menu?I personally recommend this theme: https://www.ads-software.com/extend/themes/stitch
Forum: Themes and Templates
In reply to: width of text box or paragraphs within quickpress templateFirst of setup Child Theme or use plugin like Custom CSS Manager.
Then add following code in it:#content { width: 900px; }
Forum: Themes and Templates
In reply to: How can I change meny/category color in Arras WP theme?Get Firebug to quickly identify selectors.
Read this nice article on how to use Firebug: https://www.studiopress.com/tips/using-firebug.htmAnd for keeping your modification safe from theme updates, always use Child Themes.
Forum: Themes and Templates
In reply to: [Path] Change archive title in breadcrumbYou need to edit Category Template.
Find and change it as required.Forum: Themes and Templates
In reply to: How To Insert Logo into Blog HeaderAlways post code in backticks otherwise forum parser will break the code. That is happened in your case.
Please re-post code inside backticks.