threestyler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search not workingIt’s the href of the submit button:
https://jacquemariel.com/document.search.submit();
as it’s a premium theme I cant go into the files but the demo does this on themeforest aswell so may want to ask the theme author to release a fix.Forum: Fixing WordPress
In reply to: Search not workinglooks like it’s working to me?
Forum: Installing WordPress
In reply to: how to install WP on localhostOpen the xampp control panel and make sure apache and mysql are both running?
Otherwise I would consider starting from the beginning downloading a fresh copy of xampp the complete version and going through the instructions again.
This looks like a more complete guide:
Forum: Fixing WordPress
In reply to: Search not workingThe format works, try rebuilding permalinks
Forum: Fixing WordPress
In reply to: Please tell mehow to make the link<?php the_permalink(); ?>
Forum: Themes and Templates
In reply to: Category CountTake a look through this:
https://jhherren.wordpress.com/2008/08/13/getting-the-number-of-posts-per-category-in-wordpress/
Forum: Fixing WordPress
In reply to: Uploading imagesYou need to change the folder permissions:
https://codex.www.ads-software.com/Changing_File_Permissions#Permission_Scheme_for_WordPress
OR
Manually create a folder called ‘uploads’ and chmod to 777 in wp-contents and in the wp-admin menu go to ‘Settings > Miscellaneous Settings’ and untick
“Organize my uploads into month- and year-based folders”
Forum: Installing WordPress
In reply to: how to install WP on localhostIf you followed the tamba2 tutorial then your database IS called wordpress and not mysql. You can call it whatever you want as long as it matches the details in wp-config. Make sure you changed the Collation to utf8_unicode_ci.
go to https://localhost and then phpmyadmin make sure you created the database.
Then delete your wp-config.php and go back to your wordpress location https://localhost/wordpress and let it generate a new config file for you entering the database information in the setup.
db name: wordpress (or whatever you called it)
db user: root
db pass: (no pass)install
p.s if you dont need a lite install download the xampp full package which contains all of the packages you need together.
Forum: Installing WordPress
In reply to: Local WP Install connecting to live DBMySQL only allows connections from ‘localhost’ as a security feature, so you need to allow your ip in cpanel of the remote server. If you dont have this feature then try contacting your webhost.
Forum: Plugins
In reply to: Remove ‘Lost Password’ from login box?Take a look through the plugin repository as there are plenty of custom login plugins available I’m sure one or several would give you the customization requirements without having to modify core files.
https://www.ads-software.com/extend/plugins/search.php?q=custom+login&sort=
Forum: Fixing WordPress
In reply to: ProblemYou need to have access to phpmyadmin otherwise you will need to contact your webhost.
https://codex.www.ads-software.com/Changing_The_Site_URL#Changing_the_URL_directly_in_the_database
Forum: Fixing WordPress
In reply to: How to stop people from accessing my upload directory.rename index.html to index.php and put the following inside:
<? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: https://www.mydomain.com " ); ?>
Forum: Fixing WordPress
In reply to: hi, i am trying to customize my site by deleting post items…You’re going to need to elaborate more so people can help you.
Does this happen on all themes including the default theme? What are the File Permissions of the theme you’re using set to?
Go into the folder and chmod all the individual theme files inside to 666
Forum: Fixing WordPress
In reply to: Add pages to sidebarThat should do the job.
Forum: Fixing WordPress
In reply to: Add pages to sidebarYou could hardcode the urls in the header for more control of what gets displayed there. Then add the rest manually to a widget.