helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change ID pageHi @dfart,
It is not possible to change the ID of a page, but you do can direct a request to a different page ID, by using the following code in your .htaccess file:
RewriteEngine On RewriteCond %{QUERY_STRING} page_id={ID} RewriteRule ^(.*)$ /?page_id={ID} [NC,L]NOTE: Make sure you edit the {ID}’s
Forum: Fixing WordPress
In reply to: Htaccess – now i cannot password-protected areasHi @bendsc,
Add the following rules to your .htaccess file:
RewriteEngine on RewriteCond %{REQUEST_URI} ^(.*)?wp-admin$ RewriteCond %{REMOTE_ADDR} !^123\.123\.123\.123$ RewriteRule ^(.*)$ - [R=403,L]NOTE: Make sure you edit the IP address to yours,
Now for protecting content with a password I use the plugin Password Protect from WPMUDEV.
Hope this helped.
- This reply was modified 8 years ago by helldog2018.
Forum: Fixing WordPress
In reply to: Change of the headerHi,
That is indeed the correct folder. Can you show us which files are in this folder? It is hard for us to show you the right direction as this is a premium theme
Forum: Fixing WordPress
In reply to: Change of the headerThat is most certainly not the header of your theme.
Go to wp-content/themes/your-theme
There you will find the header of your theme.Forum: Fixing WordPress
In reply to: Change of the headerI am not sure, send the code to this forum so we can take a look
Forum: Fixing WordPress
In reply to: Change of the headerIn your FTP
Forum: Fixing WordPress
In reply to: Change of the headerHi @majab44,
If you can’t edit your header in black background via your administrator, then it has probably been hardcoded.
I am not sure what the file would be, but my best guess is to take a look at your header.php in wp-content/themes/your-theme
Hope this helps.
Forum: Fixing WordPress
In reply to: Plain text loads and then flips out to normal?Hi @bendsc,
thank you for the follow-up, happy problem is found.
Forum: Fixing WordPress
In reply to: Bold Text eats up spaceHi @iraklish,
This is indeed kind of strange, and you are sure you added space after the text?
Because some are indeed without space and some are.If there are inconsistencies you might have to remove space for every bold text and make sure
margin-right: 5px;is added.For example:
.single-post a, .single-post strong {margin-left: 5px;}
Hope this helps.Forum: Fixing WordPress
In reply to: Htaccess – now i cannot password-protected areasJust to be clear, you want to make sure everyone is being blocked watching wp-admin (for example by adding only your IP address).
But also password protect certain content in your blog. Right?
Forum: Fixing WordPress
In reply to: I can’t write anything on my WordPress pagesForum: Fixing WordPress
In reply to: Change of the headerHi @majab44,
I do not realy understand what you mean. As far as I can see there are two div’s which can hold information (one on the left and one on the right).
There you can also store social media icons and links.For more information check the documentation of your theme.
Hope this helps.
Hi @yapjfq,
There is no difference between ‘special’ and ‘normal’ pages but there is a difference between posts and pages.
Pages are single pages while posts are more or less blog messages.
These posts are stored in an archive with a category or period.Now if you want to have a post to be displayd in your archive it should be added to the category other-papers. Else this ‘archive’ will stay empty because there are no posts connected to this category.
Hope this makes things clear.
Forum: Fixing WordPress
In reply to: Htaccess – now i cannot password-protected areasHi @aweller42,
If you go into your FTP and change the name of your .htaccess to .htaccess_OLD
Then go to wp-admin, reset the parmalink and SAVE.After saving the permalink wordpress will place a new clean .htaccess.
Hope this solves your issue, if not you can just delete this new .htaccess and remove _OLD from the old .htaccessForum: Fixing WordPress
In reply to: Change of the headerHi @majab44,
Without knowing what theme and URL we can’t help anywhere.
Every website / theme is different therefore there are tons and tons of options and solutions..