mdshak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Double Open Graph OG Meta TagsIt seems that your Website’s theme is generating the OG meta tags. Have you tried to disable the current theme and enable the default one.
@martinkrcho – I agree with your statement So I requested to share screen of wp-config.php file.
On a separate note, I suspect you accidentally used incorrect single quote characters in you wp-config.php. This often happens when the text is copied between different text editors or tools. Can you try the following? Please note the different single quote characters compared to your first message in this thread.
define( ‘FS_METHOD’, ‘direct’);- This reply was modified 2 years, 8 months ago by mdshak.
Forum: Fixing WordPress
In reply to: Contact information only visible in ChromeI don’t also see contact information at Chrome. It is matter of page content and settings. Please check it care fully.
Forum: Fixing WordPress
In reply to: Help with a functions.php edit – StorefrontIt is very simple task to do but You are new with WordPress So It may an issue with it. Install this snippet plugin to use the code without knowing the functions.php.
It is very simple task to do. Hope, My suggestion will help you sure.
- This reply was modified 2 years, 8 months ago by mdshak.
Forum: Fixing WordPress
In reply to: JSON error with block editorI would like to suggest to contact to Theme Developer about this issue because this is matter of debugging. We can not request to share admin access here.
Forum: Fixing WordPress
In reply to: Admin login problemYou have good explanation about your issues. I can easily understand and give the exact reply to resolve your issues.
1- Only Word-Defence Plugin cause to your login issue. You can deactivate this plugin and confirm it.
2- You should contact to your host to upgrade the PHP version over your server.
Hope, These will help you sure.
Forum: Fixing WordPress
In reply to: How to remove ‘noindex’ detected in ‘robots’ meta tagPlease share the url of your website. I will debug and give you correct solution of this issue.
Please share the screenshot of the of wp-config.php with blurred database credential. I will look in this to give the exact solution.
Forum: Fixing WordPress
In reply to: Text list with Leader dotsYour shared CSS code is correct. You have to embed the CSS class with your menu item list HTML and paste the CSS code at Admin > Appearance > Custom CSS.
Follow this code of html and css :-https://imgur.com/a/inLYMA7After reading your issue, I came across that Your issue is related with hosting server. I would suggest to contact at your hosting provider about this issue.
Hope, They will resolve it easily.
Forum: Developing with WordPress
In reply to: push returned Ajax response to ‘this’After looking inside the code. I have found one issue. You declared variable (var ahref) within the scope of loop. That will not work outside of loop.
I would suggest to declare the variable (var ahref) outside of loop. Use this code.
var ahref = '';var obj; jQuery('.rbs-img-image').each(function() { href = jQuery( this ).children('.rbs-img-data-popup').data('popup'); jQuery.ajax({ type: 'POST', url: ajaxurl, dataType: 'html', data: { action: 'get_attachment_page', href: href, }, success: function(data) { ahref = data; console.log( ahref ); // this one works! }, }) console.log( ahref ); // this one returns nothiing jQuery( this ).children('.thumbnail-overlay').append( ahref ); });
Forum: Fixing WordPress
In reply to: How to remove ‘noindex’ detected in ‘robots’ meta tag@sharpe1990 – It should work. I would suggest to clear the cache of web browser, check with another browser and disable all type cache plugins, server cache.
Forum: Fixing WordPress
In reply to: Site blocked when admin modeAfter reading your problem of website, I would suggest to contact at Theme Developer about this issue. Because It is not related with WordPress itself.
Forum: Fixing WordPress
In reply to: How to remove ‘noindex’ detected in ‘robots’ meta tagFollow given below steps.
1- Log in to WordPress
2- Go to Settings → Reading
3- Scroll down the page to where it says Search Engine Visibility
4- Uncheck the box next to Discourage search engines from indexing this site
5- Hit the “Save Changes” button below.These steps will help to resolve the issues.
Forum: Fixing WordPress
In reply to: Members area with member vettingYou can try out Member Press plugin.
It will help you sure.