Rabeah Abbas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: changes in mobile affect the desktopDo you mean that you click on an icon at the bottom of the Customizer?
If so, please understand that these are only preview size indicators.
If not, please be more specific about what screen you are on and what theme you are using.Joy is correct.
If you are using the customizer options, you will need to use
@mediaqueries in your css to style for mobile devices.- This reply was modified 7 years, 11 months ago by Rabeah Abbas.
Forum: Fixing WordPress
In reply to: changes in mobile affect the desktopHeya!
Need a bit more information to help you out.
How did you make the changes specifically? Walk us through the steps you made.
- This reply was modified 7 years, 11 months ago by Rabeah Abbas.
Forum: Fixing WordPress
In reply to: How do I center a wordpress siteHello!
The code that Steve provided most certainly works! I was curious about why it would not be working on your side of things and took another look.
Looks like you’re using the plugin Fast Velocity Minify, which takes your css files, minifies them, and caches them.
After adding steve’s code:
.site { margin: 0 auto; }Be sure to navigate to Fast Velocity Minify’s settings, and purge the cache in that plugin.
Lastly, view your site in “Incognito” or “Private Browsing” mode, as this will display an uncached version of your site, hopefully reflecting the changes you made.
Forum: Fixing WordPress
In reply to: Changing All Image Gallerias at once ?How is the slideshow incorporated into the site? (shortcode, embed…)
Usually when I see
pluggable.phpandfunctions.phperrors lumped together, the culprit is usually a blank space at the end of thefunctions.php.Easy to check for, navigate to
/wp-content/themes/twothousandeighteen/functions.phpin your directory and open the file.scroll to the bottom of the file, there should be no space after the
?>tag. If there is, delete the space(s).Forum: Fixing WordPress
In reply to: How do I change my admin login page url?Yes, that plugin is safe to use.
Forum: Fixing WordPress
In reply to: What’s inserting Google Analytics Tracking SnippetHeya! It’s possible that the code is being called in by one of the theme files. To for this, go to your WP Dashoard, navigate under Appearance < Editor.
From there look for your header.php file and your functions.php file. After locating those files, check both for the analytics code.
Forum: Fixing WordPress
In reply to: Can’t Access Admin Area OR Change PasswordHey!
Okay, so it looks like you have taken some steps in the right direction, just want to go back over some of stuff you have tried so far.
Like you said, the absolute fool-proof way to reset a password is by accessing the db through PHPmyadmin and resetting the username and password under wp_users. The fact that this did not work might mean that a few things may have been overlooked.
When you reset the PW through PHPmyadmin, did you hash it before adding it to the field in the db?
If not, use a hash generator like this one, and follow the steps on that page to properly reset the password.
Then remove previous scripts and code that you used to attempt to fix this, and try logging in again with your new credentials.
If that doesn’t work, we need to make sure the correct database is being edited, which I can figure out if the above is not working.
- This reply was modified 7 years, 11 months ago by Rabeah Abbas. Reason: added some clarification
Forum: Fixing WordPress
In reply to: Am I hacked? Received message from hosting providerUnfortunately, it seems that someone was able to upload some malicious code into your WordPress installation. But don’t fret! This kind of stuff happens from time to time.
First, some information about the report
This line represents which file was exploited:
Web upload script path : /home/xxxxx/public_html/wp-admin/admin-post.php
The scan report at the bottom gives information describing a bit more about what that script is known to do. Seems that there is some sort of redirection exploit going on. Hackers can gain access multiple ways, most common ways are out of date WP installs, Out of date plugins, weak username & password.
Depending on your host, they might be able to help out in this situation, so I would contact them to see if there is anything they can do to fix it.
In the meantime and have access to to your FTP account, you should follow this guide as recommended by ww.wp.xz.cn to help clean your wordpress installation
If you need more info, post back here and we’ll help you out
- This reply was modified 7 years, 11 months ago by Rabeah Abbas.
<div style="background-color:#cccccc; position:absolute; left:0; right:0;" class="shes-widget-full"> <br>Welcome to. <br> <br>Website details here. <br> </div>That should do the trick.
You were nearly there! when you inline style an element, the correct syntax would be
style=""you forgot the closing quotation mark afterstyleForum: Themes and Templates
In reply to: [Techozoic Fluid] How to change position of blog title?Anytime! Glad I could help
Forum: Fixing WordPress
In reply to: site is working, but can’t login to dashboardHey there!
Just to clarify, did you try renaming the entire plugin folder when testing to see if plugins were conflicting?
And did you switch to a default theme when testing for theme conflicts?
After those two steps, you would usually to do a fresh install of WordpPress. If You are unable to update to the most current version of WordPress, you can download the version you currently are running from the archives at https://ww.wp.xz.cn/download/release-archive/
Backup your site, and then grab a copy of the version you need and replace your core WordPress files (be sure not to overwrite your wp-content folder or your wp-config.php.)
Forum: Themes and Templates
In reply to: [Techozoic Fluid] How to change position of blog title?h1, .blog_title { position: relative !important; top: 50px; }Adding that to your style.css file should do the trick. (From Admin Dashboard, navigate to Appearance < Editor)
Highly recommend that you have a child theme setup if you do not already, as any update to the theme would wipe this change out.
If you need help with any of the above, I would be glad toprove you with more info to help you get going in the right direction.
Forum: Fixing WordPress
In reply to: Just acess home page on Local installationIssue may lie in the new URL not being updated in the database you migrated over. Go ahead and FTP into your site so you can modify your wp-config.php file. All you will be doing is adding the following:
// Site URLS (override DB settings) define('WP_HOME','http://www.myurl.com'); //<-- NO TRAILING / define('WP_SITEURL','http://www.myurl.com'); //<-- NO TRAILING /Be sure to replace ‘http://www.myurl.com’ with the correct url. Try visiting
your-url.com/wp-admin/phpafter you complete this step.Forum: Fixing WordPress
In reply to: change checkbox to buttonUnfortunately, to change that from a checkbox to a button cannot be done via CSS.