Vamsi
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Creating localhost install on Windows 7Step 1: Install xammp software package ( activate apache server and mysql).
Step 2: Download wordpress script and put it the folder c:/xammp/htdocs/mywpsite
Setp 3: Visit https://localhost/mywpsite
Forum: Fixing WordPress
In reply to: My wordpress site shows a blank pageCheck your .htaccess file. Take the backup of it and replace it with default one.
https://codex.www.ads-software.com/htaccess.htaccess file will be in root folder ( where wp-admin, wp-content exists)
Forum: Themes and Templates
In reply to: Posts page fallsback to Front pageWhen you create a page ( News ) and pointed it as Posts, I don’t think that will fall in page hierarchy, so you are not hitting
page-news.php
.Forum: Themes and Templates
In reply to: [ColorMag] How to change post date to modified date?I did not get what you mean by ‘hook the get_the_date in child functions.php’ ?
Forum: Themes and Templates
In reply to: Animated Gifs/ codingI am not sure about controlling gifs start/stop animation.
What you can do is like this, have both image and gif in the code,
Show only image initially and when clicked hide image and show gif with javascript.<img src=”image.png” class=”initial”> <!– initial image —>
<img src=”mygif.gif” class=”uponaction”> <!– show with click or hover –>Forum: Themes and Templates
In reply to: How To Customize New Template Without Disrupting Site?One idea I can think of is.. check for the user, if the user is you, then load your changes else as usual
if ( get_current_user_id() == 1) { // Where 1 is my userid // My new changes } else { ... // existing code!! ... }
Forum: Themes and Templates
In reply to: Center Subcategoy Text on a Category PageBut it didn’t apply at all.. Check the place where you are adding and also cache(if any)
Forum: Themes and Templates
In reply to: I accidentally deleted my primary sidebar HTML codeIf you do not have much changes in that file, you can download the original theme and replace your theme file with the original one.
If you have some changes, contact your hosting provider if they have any backups..!
Forum: Themes and Templates
In reply to: Center Subcategoy Text on a Category PageTry adding text-align:center to its parent
eg :.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { text-align: center; }
Forum: Themes and Templates
In reply to: i cant change background color of my websiteUse custom css plugin or child theme to do the following changes
.page { background: #fff; /* white */ } body { color: #111; /* black */ } h1, h2, h3, h4 { color: #111; /* black */ }
Note: I just changed body and h tags color, if you have other elements please do verify.
Forum: Themes and Templates
In reply to: [ColorMag] How to change post date to modified date?Check your theme php files .. Just search for WordPress built in function the_date , replace it with the_modified_date
Forum: Themes and Templates
In reply to: How to Change Featured Site Photo for Social Media SharingCheck your header file .. There could be an open graph property set or check your plugins as well, eg: yoast plugin has a setting to define front page Facebook image
Forum: Themes and Templates
In reply to: No link on my picture with chromeI changed overflow value hidden to visible, seems like working..!
.archive .site-content .post, .search-results .site-content .post, .search-results .site-content .page { clear: left; overflow: visible; /* original : hidden; */ }
Forum: Themes and Templates
In reply to: Why won't my image border go away?Line 229
https://www.youracademicassistant.com/wp-content/uploads/montezuma/style.css
Forum: Themes and Templates
In reply to: Creating space between subpagesDo you mean the space between the links..?
1. Course-1 Introduction
2. Course-2 Fundamentals
If so, we cannot find out its css properties from the image.
Try adding more padding or margin to each item.