Shariq Khan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Login issueLooks like one of your WordPress core files has gone bad.
I suspect wp-login.phpTry downloading a fresh copy of WordPress and replace the core files
Forum: Fixing WordPress
In reply to: wp_insert_post appears to work, but no post on site@laz0rama, I am a bit confused. If you don’t see the posts in the dashboard, how are you trying to edit those?
Its related to cache (something like that).
Try clearing the cache and/or opening the site in a private window (Ctrl +Shift + N for Chrome … Ctrl + Shift + P for Firefox)
But better still, try this link:
https://www.responsinator.com/?url=http%3A%2F%2Ftangentdesign.com.auForum: Fixing WordPress
In reply to: Can't find CSSX-theme is a premium theme. You would get good help on their support thread.
Well it loads up fine for me.
Forum: Fixing WordPress
In reply to: wp_insert_post appears to work, but no post on site@laz0rama,
After executing your code, can you see the posts in the dashboard?Also, what is your permalinks structure set to?
Forum: Fixing WordPress
In reply to: Error establishing a database connectionCan you please let me know why
ignore @shariqkhan2012’s suggestion; he’s wrong. Plugins don’t cause an “Error establishing a database connection”
I see plenty of tutorials suggesting deactivating the plugin in these scenarios.
For instance:
https://dailycodex.com/fix-error-establishing-a-database-connection-wordpress/
https://premium.wpmudev.org/blog/fix-error-establishing-database-connection
May be you are correct and I am wrong, but please let me know why ??
Forum: Fixing WordPress
In reply to: Jquery problemSorry I did not know that, though I had a hunch. That’s why I asked OP to confirm if this is allowed and does not violate forum rules.
I was just trying to help.
Will keep that in mind in future though
Forum: Fixing WordPress
In reply to: Jquery problemI could help you, but I think it would be against forum rules to share sensitive information like passwords.
And I don’t see a “personal message” feature here.So, if you figure out a way to safely share your credentials without violating forum rules, then I am available to try to help you
Forum: Fixing WordPress
In reply to: Photos Not Showing on Mobile ViewWell, I still don’t see the images.
The path would have changed. The path being refernced here is https://lovelucyrebecca.files.wordpress.com/2016/06/67.jpg?w=300&h=300I dont know what the new path is after re-uploading. You will l have to check each image’s path individually and then update in the corresponding post.
Also, as Jan pointed out earlier, this support forum is for self-hosted WordPress websites. Your blog is on WordPress.com, so you should be looking over in the support forums of WordPress.com (not www.ads-software.com)
Forum: Fixing WordPress
In reply to: Photos Not Showing on Mobile ViewWhen I click at the above link, the images do not display there too. It means that the problem (not ALL images being displayed for desktop) is not just for me. Its for others too.
Now, it simply means that there are some images which no longer exist where they should’ve been.
Cant say much more without access to your setup.
Can you go to any of the post atht do not show images(Disappear, Deception, Chase ) in the backend, do “Edit post” and paste the content you see on the editor here?
Forum: Fixing WordPress
In reply to: Jquery problemThe original problem with the stickup is fixed.
Now the new problem you encounter is because of Visual Composer.
Its hard to tell what it is without having access to your setup.
Does the visual composer work fine with Twenty Fifteen theme.
ry switching to TwentyFifteen theme , and after enabling the visual composer, check the browser console to see if there are any errors.
Forum: Fixing WordPress
In reply to: Photos Not Showing on Mobile ViewLucy, I am afraid its not just me who is NOT seeing ALL the images on desktop.
Please checkout this link:
https://whatismyscreenresolution.net/multi-screen-test?site-url=https://lovelucyrebecca.wordpress.com/&w=1920&h=1200It shows how your website appears on desktop (and other devices).
Now coming to why you are seeing the images on your system, I believe you have caching plugin like W3 total cache activated on your site.
Forum: Fixing WordPress
In reply to: Jquery problemUse this code:
<script type="text/javascript"> //initiating jQuery jQuery(function($) { $(document).ready( function() { //enabling stickUp on the '#navbar' ID $("#site-navigation").stickUp(); }); }); </script>
You had missed the ending quote in:
$('#site-navigation).stickUp();
See if this works
Forum: Fixing WordPress
In reply to: Turn category name into a linkThis is because your categories do not have a parent category.
Try this code:
‘<?php
foreach((get_the_category()) as $childcat) {
if( $childcat->category_parent):
echo “$childcat->name has a parent category and the details are:”;
$parentcat = $childcat->category_parent;
$category_link = get_category_link( $parentcat );?>
“><?php get_cat_name($parentcat) ?>
<?php
else:
echo “$childcat->name does not have a parent category”;
endif;
}
?>’