Tarsem Singh
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Where did my slideshow go?I will Post you the answer after 2 hrs.
Forum: Themes and Templates
In reply to: Cange titel color each pageNo No… wordpress themes already using this type of code for Title. Please Paste me link of your website where you want to changes.
Forum: Themes and Templates
In reply to: Adding theme to localhostIf you are using Xampp.. Then extract your WordPress in Htdocs folder.. for Wamp Extract your wordpress folder in WWW folder.
Make sure WordPress not extracted in another folder.
Forum: Plugins
In reply to: Search engine questionFYI
– Browser comptebility
– Optimized & Clean Code
– Focus on Content
– No Extra Sliders etc.
– Speed Optimization
– Daily Updates at Home page
– Social Presence
– directory submissions
– Forum Posting
– RSS Directory SubmissionUse these for a Best SEO Website.
Forum: Themes and Templates
In reply to: [origin] [Plugin: origin] make a child themeForum: Themes and Templates
In reply to: unable to install new themePlease Upload your theme by FTP. This is Best for you. ??
Forum: Themes and Templates
In reply to: how to remove stock iNove widgetsYou Have two Options:-
- You can drag&drop.. widgets by folowing https://www.your_website.com/wp-admin/widgets.php after login.
- Edit your theme sidebar by Root/wp-content/themes/inove/sidebar.php and remove the code as you like.
Forum: Themes and Templates
In reply to: Cange titel color each page”page_title” is an example. you can choose you name/class
Forum: Themes and Templates
In reply to: [Constructor Theme] Remove Horizontal Menu from Front PageForum: Themes and Templates
In reply to: [Constructor Theme] Remove Horizontal Menu from Front PageAdd Conditional tag for only home page in your header.php for
<?php if (!is_home() ) { // Display Horizontal Navigation } ?>
for more information – https://codex.www.ads-software.com/Function_Reference/is_home
Forum: Themes and Templates
In reply to: Where did my slideshow go?Error Message
Page not found
The page you are looking for might have been removed,
had its name changed, or is temporarily unavailable.On
Forum: Fixing WordPress
In reply to: Favicon doesn't show.Getting “contains some error” messages while tring to open your favicon ico URL – https://thaiappupdate.com/wp-content/uploads/2012/05/favicon.ico .. to resolve it.. You can upload a fresh favicon on same path.
Forum: Themes and Templates
In reply to: the pagination links simply don't show up. please help meReplace Variable
$actualites
With
$wp_query
Forum: Themes and Templates
In reply to: Custom page not template pageForum: Themes and Templates
In reply to: Cange titel color each pagePlease edit your Theme e.g. wp-content->themes->your_current_theme->page.php
you can find here
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
OR
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
Just add a class like <h1 class=”page_title”> or <h2 class=”page_title”> and assign a page_title class in your style.css
Like
.page_title{ color:#0000ff; }
You can find your CSS file by..
wp-content->themes->your_current_theme->style.css