agib85
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site is not loadingNo problem, I’ll try to describe to you (it isn’t that difficult, you’ll get a hang of it).
Go to your plugins, find Chitika and disable it. Then test if scroll doesn’t work.

As you can see, the developer tools report that those js files are not found/forbidden to access (you may need to white list chitika IPs in your security plugin, such is Wordfence for instance or check with your host to whitelist them too).
You may also want to email Chitika mail support on this: http://support.chitika.com/customer/en/portal/topics/29259-popular-articles/articles
Forum: Fixing WordPress
In reply to: Site is not loadingCould you please comment that piece of JavaScript out, just to make sure that it doesn’t interfere with the ajax call for loading rest of content on single page (usually when one js breaks, it prevents other js from working too as far as I’m aware)
Best of luck
Forum: Fixing WordPress
In reply to: Site is not loadingConsole is full of errors, some files are missing/not addressed properly. Try disabling ads (be it via plugin, or if you pasted it into headers/footers php)
(index):389 GET https://i0.wp.com/www.yeshna.com/wp-content/uploads/2016/12/c11315ba-b17f-4095-b6fb-f37be43f083b.jpg?w=656 400 ()
getads.js:319 GET http://mm.chitika.net/minimall?output=jsonp&publisher=Yenna&unit_id=5&sid=w…nip_title=One%20and%20the%20same%20%20%7C%20Build%2C%20create%20%2Cinspire
handle_message @ getads.js:319
getads.js:319 GET http://mm.chitika.net/minimall?output=jsonp&publisher=Yenna&unit_id=6&sid=w…nip_title=One%20and%20the%20same%20%20%7C%20Build%2C%20create%20%2Cinspire
handle_message @ getads.js:319
c11315ba-b17f-4095-b6fb-f37be43f083b.jpg:1 GET https://i0.wp.com/www.yeshna.com/wp-content/uploads/2016/12/c11315ba-b17f-4095-b6fb-f37be43f083b.jpg?zoom=1.25&w=656 400 ()
c11315ba-b17f-4095-b6fb-f37be43f083b.jpg:1 GET https://i0.wp.com/www.yeshna.com/wp-content/uploads/2016/12/c11315ba-b17f-4095-b6fb-f37be43f083b.jpg?w=656 400 ()Forum: Fixing WordPress
In reply to: 403 ForbiddenWhen this happens? 403 errors usually imply nonce problems or poorly configured security plugin; it’s a good idea to check some of the solutions here:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-403-forbidden-error-in-wordpress/
Best of luck
Forum: Fixing WordPress
In reply to: Suddenly some readers cannot access my siteOpens fine for me in Serbia… check .httaccess or some security plugin you have, it could be that the plugin wrote to .httaccess ip range ban. Try to rename .httaccess via FTP and see what happens when wordpress generetes new one.
Best of luck
Forum: Installing WordPress
In reply to: cannot load “setup-config.php?step=2”HeidiSQL uses MySQL so that shouldn’t be an issue.
Forum: Fixing WordPress
In reply to: shortening product titles shortens all titlesI meant:
add_filter( 'woocommerce_product_title', 'shorten_my_title', 10, 2 ); // Shorten Post Titles (mostly for long-assed product names) function shorten_my_title( $title, $id ) { if ( is_shop() || is_product_tag() || is_product_category() && get_post_type( $id ) === 'product' && strlen( $title ) > 40 ) { return substr( $title, 0, 40 ) . '...'; } else { return $title; } }Forum: Fixing WordPress
In reply to: Can’t find .maintenance file in FTP or CPanelYou’re not using some plugin/remote wordpress management service that has some sort of custom maintenance mode? Could you rename the plugins folder and manually update wordpress again: https://codex.ww.wp.xz.cn/Updating_WordPress#Manual_Update
Try increasing timeout maybe? https://pypi.python.org/pypi/WooCommerce
Forum: Fixing WordPress
In reply to: Moved site from wp.com to godaddy – now can’t access (due to https?)Give it a shot with google webmaster tools: http://webmasters.stackexchange.com/questions/68435/moving-from-http-to-https-google-search-console
Forum: Fixing WordPress
In reply to: shortening product titles shortens all titlesPerhaps change ‘the_title’ on first line with ‘woocommerce_product_title’? (however, if your products are made as WordPress posts… doubt it will work then).
Forum: Fixing WordPress
In reply to: WP doesn’t send email updates for new postsGreetings. Try some of these:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-not-sending-email-issue/
http://www.wpbeginner.com/plugins/how-to-fix-the-missed-schedule-post-error-in-wordpress/
Best of luck.
Forum: Fixing WordPress
In reply to: How to change pagination/search/author permalinks?Perhaps give it a go with this plugin? https://ww.wp.xz.cn/plugins/custom-permalinks/
Forum: Fixing WordPress
In reply to: Edit text that appears in a browser tabHello, try this: https://codex.ww.wp.xz.cn/Appearance_Customize_Screen (just go to Appearance_Customize_Screen > Site identity and modify the site title
Forum: Installing WordPress
In reply to: Error establishing a database connectionTake a look at this too (try looking for your host here, otherwise, contact them): https://codex.ww.wp.xz.cn/Editing_wp-config.php#Possible_DB_HOST_values