Sundar
Forum Replies Created
-
Install this Plugin and then scan your site for any malicious scripts
https://wordpress.org/plugins/wordfence/Forum: Fixing WordPress
In reply to: Plugin Update ErrorUpdate the Folder Permissions With cPanel.
Check the link below on how to do it
https://wpdatatables.com/installation-failed-could-not-create-directory/#:~:text=Another%20way%20to%20get%20rid,permission%20to%20write%20new%20files.&text=Within%20the%20root%20folder%2C%20locate%20the%20%E2%80%9Cwp%2Dconfig.Forum: Fixing WordPress
In reply to: embedded google calendar too smallYes, We can make the requested updates in the site. Please add the following CSS codes in the theme customizer “Custom CSS” area.
.site { margin: 0 auto; max-width:100% !important; }
.site-header { max-width: 100% !important; }
.primary-navigation { float: left; margin-left: 14%; }
.site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content { max-width: 100%; }
p > iframe { width:100% !important; }Forum: Fixing WordPress
In reply to: LAZY LOAD IMAGEYou can add CSS codes in the theme customizer “Custom CSS” area or footer part of the theme template file ( footer.php ) like below,
<style type=”text/css”>
img[data-lazyloaded]{ opacity: 0; }img.litespeed-loaded{ -webkit-transition: opacity .5s linear 0.2s;-moz-transition: opacity .5s linear 0.2s;transition: opacity .5s linear 0.2s;opacity: 1; }
</style>I understand your concern but it needs some customization / edits on the templates. To achieve this, You need to customize the grid post template with permalink code functions and HTML elements update. You should have primary <div> element for each post loop block and set link for the blog posts ( Please check the below example )
<div id=”gridcontainer”>
<div class=”griditemleft”>
<div class=”postimage”> Post Image</div>
<h2>Post Title</h2>
</div>
<div class=”griditemright”>
<div class=”postimage”> Post Image</div>
<h2>Post Title</h2>
</div>
<div class=”clear”></div>
</div>
Forum: Fixing WordPress
In reply to: I can’t log in to WordPress AdminCheck Base URL in database wp_options->siteurl & wp_options->home (make sure only domain name is there & nothing else like /home/ etc,..)
Let me know the outcome.
- This reply was modified 5 years, 10 months ago by Sundar.
Forum: Fixing WordPress
In reply to: Different sidebar on every pageCheck with the MARKETER THEME technical support & they should be able to help you quickly.
Forum: Fixing WordPress
In reply to: Font issueIn the CSS for the body class, wherever there is font-family: Poppins; please add font-weight:normal;
This should solve your problem.
Forum: Fixing WordPress
In reply to: E-Newspaper uploadYou can upload PDF files as you would do with uploading images.
Forum: Fixing WordPress
In reply to: Slow loading websiteI have checked the current website performance and performance using speed application tests and tools.
Yes, it’s aleady configured with cache plugin and minifications but it seems to be issues with redirects , mod rules and assets ( scripts , css ) loading problems.
You need to analyze the WP backend setup , plugins config settings and htacess access rules with full integrity checks. By this you can sort out the loading issues and fix it with updates.
The requested update will require some code customization in the grid posts template and functions. You need to customize the hooks / functions for the posts ( titles & images ) to link with specific posts.
As you say that you don’t know coding , it is not possible for you to do it yourself .
Forum: Fixing WordPress
In reply to: My Meta Description is in wrong languageIt looks like ” Japanese SEO Spam “. The Google search results will display the infected pages/keywords/titles in Japanese language. This black-hat SEO technique has been long used by hackers to inject SEO Spam in WordPress Site along with Spam Link Injection.
Steps to fix Japanese seo spam from WordPress site
1.Check your .htaccess file
2.Remove All Malicious Files and Scripts
3. Check Recently Modified Files
4. Check your Sitemap
5. Run a Malware Scan using WP Hacked Help
6. Create list of infected URLs
7. Remove newly created accounts from Search Console
8. Use Fetch as Google Tool
9. Submit to remove URL tool in search consoleForum: Fixing WordPress
In reply to: Blog Posts BlockYou can use plugin for post blocks. WP Post Block allows you insert your posts into a Pages, Posts or any other Gutenberg ready Post Type. https://wordpress.org/plugins/wp-post-block/
Also you can try Gutenberg addon plugin ( https://wordpress.org/plugins/ultimate-post/ ) for the following post type template formats
* News Blog
* Personal Blog
* Blog Post Grid
* Blog Post Listing
* Post Slider
* Post CarouselForum: Fixing WordPress
In reply to: need help for database errorTry repairing MySQL tables using phpMyAdmin. If not, here are the steps you can follow to do so.
1. Log in to phpMyAdmin or connect to it via your web hosting cPanel account.
2. Select the database with the crashed table.
3. Select “Repair table” from the “With selected:” drop down at the bottom of the list ( wp_options).
4. Sometimes it may be due to plugin overload conflicts. An incompatible plugin which you need to disable right away ( likely a cache / old version plugin if any ).
5. You are done!Forum: Fixing WordPress
In reply to: Unable to drag and drop woocommerce product categories for sortingThis is a jQuery error which can prevent certain functionality modules / things from working on your website.
If something does not work after a WordPress or plugin update or maybe because the plugins were not updated for a long time then you can check the Inspector > Console.
Please de-activate plugins one by one and then test the Woocommerce sort order functionality. By this, you can sort out the issues and fix it with required updates.