kattouf
Forum Replies Created
-
Forum: Plugins
In reply to: [Sharify Social Share Buttons] Please bring default colours backOk its working, I had to select ” Uninstall Sharify Settings” then deleted it again and reinstalled.
its working now
Forum: Plugins
In reply to: [Sharify Social Share Buttons] Please bring default colours backExcept Pocket . That has colour settings
Forum: Plugins
In reply to: [Sharify Social Share Buttons] Please bring default colours backOk the settings page, the colour boxes are blank too.
Forum: Plugins
In reply to: [Sharify Social Share Buttons] Please bring default colours backForum: Plugins
In reply to: [Sharify Social Share Buttons] Please bring default colours backHi mehedi,
I just now deleted it and reinstalled latest.
It still the same all buttons are light blue…
/J
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Greek filename not zip properlyThanks david,
I won’t be able to do anything about it now that we switched servers (both running apache)
and I realised how complicated it gets with non latin characters.
I just uploaded this file to the new server:
Untitledλο11-22.jpgand it gets stored as:
Untitled????11-22.jpgThis WORKS through WP and the post shows it.
In the Zip file it was :
Untitled++++11-22.jpgI opened it in Windows.
If I get the chance I might try your recommendations. It’s a shame I lost so many files.
thanks,
/J
My mistake. The Restore Function is working. I think by Design the background is greyed out (with pattern) and you get a Popup window to do the selection.
So that’s working. sorry for that.
Hi,
I am in process of restore my WP to a new server, I installed fresh copy of WP + updraft nothing else, tried to restore from GDRIVE, but the screen gets greyed out and browser crashes.
Had this problem with Backing up from old server too yesterday but used the Kayboard and TAB key to get it done.
Forum: Plugins
In reply to: [Akeeba Backup CORE for WordPress] Restore interface 'broken'No not the php code. maybe the ajax code?
I mean the buttons said things like: standard_button_next
replace_header
lots of hiphenated words referring to the buttons and element.
Ok,
having set UTF8 in the wp-config.php brought back the site to normal working. don’t ask me why.
woocommerce looks normal to me.
All is good now. The convenience of a single backup file is why I chose akeeba.
thanks
/J
Forum: Plugins
In reply to: [Akeeba Backup CORE for WordPress] Greek Language posts no restoredOk fixed that by added UTF8 in the wp-config.php file.
Forum: Plugins
In reply to: [Sharify Social Share Buttons] beautiful iconsThanks for the reply! It’s just that ShareThis has it that’s why I ask.
I will still use yours. It looks great
ThanksJ
Forum: Plugins
In reply to: [WP Store Locator] Search by NameI’d also like search by name option.
otherwise great plugin!
Forum: Plugins
In reply to: [Event Calendar & Ticketing] Widget Orber by Sart dateFigured it out! :-)`
$sql = 'select p.ID, p.post_title, m2.meta_value, m3.meta_value from ' . $wpdb->posts . ' p ' . ' left join ' . $wpdb->postmeta . ' m1 on m1.post_id = ID ' . ' left join ' . $wpdb->postmeta . ' m2 on m2.post_id = ID ' . ' left join ' . $wpdb->postmeta . ' m3 on m3.post_id = ID ' . ' where post_status = "publish" AND ( post_type = "product" OR post_type = "ignitewoo_event" ) ' . ' AND ( m1.meta_key = "_ignitewoo_event" AND m1.meta_value = "yes" ) ' . ' AND ( m2.meta_key = "_ignitewoo_event_end" AND m2.meta_value >= "' . date( 'Y-m-d H:i:s', current_time( 'timestamp', false ) ) . '" ) ' . ' AND ( m2.meta_key = "_ignitewoo_event_end" AND m2.meta_value != "" ) ' . ' AND ( m3.meta_key = "_ignitewoo_event_start" AND m3.meta_value != "" ) ' . ' ORDER BY CAST( m3.meta_value as DATE ) ASC LIMIT ' . $number ;
Forum: Plugins
In reply to: [List category posts] Post in two Categories – exclude one when displayingSolved:
It’s not elegant but this is ONE way that works:
<? foreach((get_the_category()) as $category) { $thiscat= $category->cat_ID ; $thiscat= $thiscat.","; $thiscat = preg_replace('/(?<=^|,)\b2\b(?=,|$)/', '', $thiscat); } ?>
Shortcode:
<? echo do_shortcode("[catlist id='".$thiscat."']");?>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]
If you know a lighter code let me know!