sk_tamilan
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Count Plus] Facebook Counter no longer workingis there any way i can this working even if i have my country restriction applied to my page please?
Forum: Plugins
In reply to: [Social Count Plus] Facebook Counter no longer workingHello Claudio,
No actually I found out why its not working, my API key everything is fine. The problem is that it doesn’t work when i have country restriction applied to my page.
when i removed it, it worked.
My page is currently restrcited to show only in these countries and the get system report returns 400 but if i remove the page restriction it returns a 200!!
United Kingdom, France,Canada,United States,Germany,South Africa,Switzerland,Denmark,Norway,Sweden,Netherlands,Italy,Mauritius,Réunion
Forum: Plugins
In reply to: [Social Count Plus] Facebook Counter no longer workingHello Claudio,
The layout in facebook has changed to your original video but its still around the same place. here is where i copied it from :-
https://oi64.tinypic.com/2wgyltw.jpg
but i noticed this inside the advanced section of the settings : –
“Client OAuth login is enabled but you haven’t listed any valid OAuth redirect URIs. Click here for more information.”
As shown in this image : – https://oi64.tinypic.com/2z53gqh.jpg
Forum: Plugins
In reply to: [Social Count Plus] Facebook Counter no longer workingbtw it doesn’t work if i put the facebook page slug or id
Closed
Hi Guys,
for anyone who needs the answer i found it here : –
function so23698827_add_rewrite_rules( $rules ) { $new = array(); $new['events/([^/]+)/(.+)/?$'] = 'index.php?events=$matches[2]'; $new['events/(.+)/?$'] = 'index.php?event-categories=$matches[1]'; return array_merge( $new, $rules ); // Ensure our rules come first } add_filter( 'rewrite_rules_array', 'so23698827_add_rewrite_rules' );
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Error in Media-extractor.phptopic closed
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Error in Media-extractor.phpHi Jeremy,
I have found the cause of the problem. Since i use this template a lot, I am using shorcodes to define the path of my images relative to the template url and this is the cause of the problem.
[template-url]/img/image.jpg
the code in media-extractor is trying to process the images prior to wordpress processing the shortcode.
Fix: Replace with the absolute url of the image like :-
https://example.com/wp-content/themes/example/img/image.jpg
I was told by the support team this won’t most likely to get fixed.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Error in Media-extractor.phpHi Jeremy,
I have tried already tried completely deleting the plugin and re-installing but no avail.
I have sent a request through the contact form.
Kind Regards
Forum: Themes and Templates
In reply to: custom_wpautop functionnevermind i managed to fix: –
function custom_wpautop() { if (!is_single()){ remove_filter('the_content', 'wpautop'); } } function custom_wpautop_blog() { if (is_page(7)){ add_filter( 'the_content', 'wpautop' , 99); } }
are you sure you changed both site_url and home_url fields under wp-options table in your wordpress database?
Forum: Fixing WordPress
In reply to: Can′t delete this signs ???¤????? ???§try adding this into the head section of your header.php file
<meta charset=”UTF-8″ />
Forum: Fixing WordPress
In reply to: Transfer site from one domain to another…go into your wordpress database and under wp-options table change site_url and home_url fields to https://www.kaulukoa.com
Forum: Fixing WordPress
In reply to: Fatal error! I can't open the web site anymoreYou are maybe getting a database connection error?
there might be a chance if you replaced the wp-config.php
or if its no longer there due to the new files you copied then i hope you have a backup of this file or you will have to set this up again – just open the file up and modify the fields.Forum: Fixing WordPress
In reply to: Fatal error! I can't open the web site anymoreyou can restore pretty much anything from the original wordpress except for the wp-content folder as thats the folder which contains all your plugins, themes, uploads.
I strongly recommend not to play around with the other wordpress core folders! you don’t need to be editing anything in wp-admin, wp-content and wp-includes.
if you are customising your themes its all in wp-content