Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images Not Appearing On Home Page After Moving to New ServerHi,
Had you change URL in database? You will have to replace all old url with new url in the database.
Thanks
Forum: Fixing WordPress
In reply to: template-tags.php issueHello justinrobbins,
Their is syntax error of missing ‘{‘ can you please check your /template-tags.php file once.
Thanks
Forum: Networking WordPress
In reply to: Harmonic theme, widgets page background imageryHi,
Since the theme is of WordPress.com and not ww.wp.xz.cn you should open a ticket at wordpress.com as they will be able to assist you more quickly than users here.
You can open a support ticket at WordPress.com on the following link.
https://en.support.wordpress.com/
Thanks
Forum: Fixing WordPress
In reply to: Cannot access my site after installing themeHi,
Just delete the theme’s folder using FTP client or cpanel and your site will be back.
Thanks
Forum: Fixing WordPress
In reply to: admin url link sending "connection reset "messageHi,
Your link
http://www.francetrotting.com/
I think you will have to check your DNS settings as it is still showing the NameCheap page from where you have purchased the domain.
If it still does not work then please contact your hosting provider.
Thanks
Forum: Fixing WordPress
In reply to: telling subscribers there's a new postthere are plugins available for this,
https://ww.wp.xz.cn/plugins/email-subscribers/
https://ww.wp.xz.cn/plugins/subscribe2/Forum: Fixing WordPress
In reply to: Checking if Table Exists & Printing InformationYour Welcome. 🙂
Forum: Fixing WordPress
In reply to: I Cannot go on the dash board of my add on domainHi,
In this case please contact your hosting provider.
Thanks
Forum: Fixing WordPress
In reply to: Different Logos per CategoryForum: Fixing WordPress
In reply to: Checking if Table Exists & Printing InformationHi,
Sorry, actually the offline and online were placed under wrong conditions.
Please use the below code it will work this time.
global $wpdb; $table_name = $wpdb->prefix.'ftbstatistics'; if($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name) { //Table does not exits echo "<h3>Database Status: <span style='color: red;'>Offline</span></h3>"; } else{ //Table exits echo "<h3>Database Status: <span style='color: green;'>Online</span></h3>"; }Thanks
Forum: Fixing WordPress
In reply to: Admin Dashboard forbidden message?go to wp-content/plugins folder and check if there is any admin/ security plugin is added, remove the plugin for a while and check if you are able to access admin .
Forum: Fixing WordPress
In reply to: admin url link sending "connection reset "messageHi,
Can you please post your site URL?
Thanks
Forum: Everything else WordPress
In reply to: create multiple custom logins for clientsHi,
Yes you can do that using the “Woocommerce” plugin for wordpress.
https://ww.wp.xz.cn/plugins/woocommerce/
Thanks
Forum: Fixing WordPress
In reply to: Checking if Table Exists & Printing InformationHi,
You can use the following condition to check if table exists or not and display appropriate message.
global $wpdb; $table_name = $wpdb->prefix.'TABLE-NAME-HERE'; if($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name) { echo "<h3>Database Status:</h3>"."<h3 style='color: green;'> Online</h3>"; } else{ echo "<h3>Database Status:</h3>"."<h3 style='color: red;'> Offline</h3>"; }Please let mwe know if it works for you.
Thanks
Forum: Fixing WordPress
In reply to: WP_Query Custom Filed ParametersHi,
Try the following.
array(
‘key’ => ‘country’,
‘value’ => $country,
‘compare’ => ‘LIKE’
),If it does not work then you can refer more examples from the below links.
http://stackoverflow.com/questions/5611715/where-value-in-column-containing-comma-delimited-values
http://stackoverflow.com/questions/5033047/mysql-query-finding-values-in-a-comma-separated-string
Thanks