phe.le
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: install in directory (New) In public html lost htaccessThe site looks fine. I would try the following, but you should check the wp-admin folder to see if there are missing files. I’m also thinking that a plugin is prevent users from seeing the dashboard (possibly OneAll Social Login).
– deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
– switching to the default theme to rule out any theme-specific problems.
– resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems. https://codex.www.ads-software.com/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F
– re-uploading all files & folders – except the wp-content folder and wp-config.php & root .htaccess files – from a fresh download of WordPress. Make sure that you delete the old copies of files & folder before uploading the new ones.
Forum: Fixing WordPress
In reply to: deleted picture still showing upHi,
You are using W3 Total Cache plugin. You’ll have to clear W3 cache whenever you make changes. It doesn’t show up on your Mac because you’re logged in.
Forum: Fixing WordPress
In reply to: install in directory (New) In public html lost htaccessSorry for the late response. Can you give me your url?
Forum: Fixing WordPress
In reply to: install in directory (New) In public html lost htaccessIt should be on the next page. option_id 39 or something.
Forum: Fixing WordPress
In reply to: install in directory (New) In public html lost htaccessEdit wp-options table of your database using PHPMyAdmin. Change “home” and “siteurl” to your new url.
Forum: Fixing WordPress
In reply to: Block quotes in post preview not formatted properlyNo, it will work with any theme. Looks like there were some white spaces from your pasted code.
Hopefully you can get FTP access soon to fix it.
Forum: Fixing WordPress
In reply to: Block quotes in post preview not formatted properlyYou should undo it. Probably had extra <?php in functions.php.
Forum: Fixing WordPress
In reply to: The Blogging Blues :(First, you should edit the Blog page and see which template is it using. Hopefully it’s default. If it’s using the default template, then you need to edit index.php (Using FTP or Editor under Appearance) and replace <?php the_content(); ?> with <?php the_excerpt(); ?>
More info: https://codex.www.ads-software.com/Function_Reference/the_excerpt
Forum: Fixing WordPress
In reply to: The Blogging Blues :(You’re incorrect. The Blog page is using a template to display the posts. What search engines see are the content (posts) on the Blog page, not what is inside that page’s editor.
What you did wrong is displaying full posts on the Blog page. What is the point of users looking single posts when they can see everything on the Blog page? Try to use excerpt.
Forum: Fixing WordPress
In reply to: Block quotes in post preview not formatted properlyI’m guessing that you’re using the_excerpt() on the homepage. It automatically removes all HTML tags. You can keep the HTML tags by following instructions from this link:
Forum: Fixing WordPress
In reply to: Reading Setting not showing list of pagesIf you use wp-paggenavi plugin, you’ll need to add an php code to the template to display pagination. Otherwise, you will need to add Next and Previous Links php code, also from the link above.
Forum: Fixing WordPress
In reply to: Exclude Newest Sticky PostYes, you can set offset to 1:
https://codex.www.ads-software.com/Class_Reference/WP_Query$sticky=get_option('sticky_posts'); $args=array( 'ignore_sticky_posts'=> 1, 'post__not_in' => $sticky, 'post_type' => 'post', 'offset' = 1, 'paged'=> $paged, 'posts_per_page'=> 6 ); $bizsliderq = new WP_Query($args);
Forum: Fixing WordPress
In reply to: Why isn't one-click update working?What errors do you see when you click update?
Forum: Fixing WordPress
In reply to: Changing an image in the wrapperGood luck. It’s not very flexible that you need to call them every time.
Forum: Fixing WordPress
In reply to: Customizing my slideshowIf you are willing to pay, you can buy NextGen Pro (Since you’re already using NextGen plugin). It has so many great slideshow options. Check it out.