pcfix24
Forum Replies Created
-
try this:
go to php my admin,
edit wp-options table,
change install link for your website
use a http://www.website instead off http://webiste
Good luckForum: Fixing WordPress
In reply to: How to change the header on wordpress blogyou should add this code in header.php, where you want to see the slider
Forum: Fixing WordPress
In reply to: Can't login WordPress – redirects to logingo to php my admin,
edit wp-options table,
change install link and folder for your websiteForum: Fixing WordPress
In reply to: Link to local diskmake http://www.domain.com point to public_html and NOT to a subfolder of public_html.
create this folder public_html/folder1
create one index.html file and write some text
try this link http://www.domain.com/directory1/if your website is installed as subfolder of public_html like /public_html/wordpress you won’t be able to go to a parallel folder
Forum: Fixing WordPress
In reply to: Auto-resize background with different resFor resize use this example
url("./img/bg1.jpg") repeat scroll center top / 100% 100%#EEEThis is the Bible http://www.w3schools.com/cssref/pr_background-repeat.asp
Forum: Fixing WordPress
In reply to: Tell apart two pages with the same title, in the admin.Keep the mouse over the title and in see the link.
Forum: Fixing WordPress
In reply to: How to hide total page views from posts?at line 1130:
.post-views {
color: #454544;
position: absolute;
right: 0;
top: 0;
display:none;}
Forum: Fixing WordPress
In reply to: How to hide total page views from posts?Hi Julia,
Please edit your style.css file.
Search for .post-views and add
display:none;Forum: Fixing WordPress
In reply to: How to list all categories titles in home page? (Loop issue)<?php wp_list_categories( $args ); ?>
wordpress codex about categsForum: Fixing WordPress
In reply to: Events on the half hourThis is an easy task that you can solve using the parameters for
<?php the_time(); ?>Take a look at this example [Link moderated and replaced with the content below]
Examples
Displays the time using your WordPress defaults.
<p>Time posted: <?php the_time(); ?></p>Displays the time using the format parameter string ‘g:i a’ (ex: 11:26 pm).
<p>Time posted: <?php the_time(‘g:i a’); ?></p>Displays the time using the 24 hours format parameter string ‘G:i’ (ex: 11:12).
<p>Time posted: <?php the_time(‘G:i’); ?></p>Date as Month Day, Year Displays the time in the date format ‘F j, Y’ (ex: December 2, 2004), which could be used to replace the tag the_date().
<div><?php the_time(‘F j, Y’); ?></div>Forum: Fixing WordPress
In reply to: How to add a new tab on home pageDo you use custom menus? Did you add this new page in the menu?
Forum: Fixing WordPress
In reply to: 4.1 issue with login to wp, on custom web adress.If you press on “forget password” does it work?
If not, then the problem is one of the options. It seems that it matters for wordpress if it is installed with or without www. Take a look here at how to change this option [Link moderated, see info below]
In order to fix it,- go to php my admin,
- edit wp-options table,
- change install link for your website
- use a http://www.website instead off http://webiste
Forum: Fixing WordPress
In reply to: Blog Subscriptions PopUp.use a plugin for this https://wordpress.org/plugins/wp-super-popup/
Forum: Fixing WordPress
In reply to: Add a link to the reload the same page in different language1 remove the lang part of the link
2 replace it with what you needIn the example below we have used “DE”. Please replace it with what you need.
$nolang = substr($string, 0, strrpos($string, "lang=en")); $newlink = $nolang."lang=DE"; echo $newlink;Forum: Fixing WordPress
In reply to: Add a link to the reload the same page in different languagedo you use https://wordpress.org/plugins/mqtranslate/ ?