MagniGeeks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Parse ErrorYou can delete too.
Forum: Fixing WordPress
In reply to: Parse ErrorIt doesn’t seem to be issue with WordPress it’s the issue with your theme. Just rename mint to mint-old or something else and it would work.
Forum: Fixing WordPress
In reply to: Parse ErrorOh okay, then you should just rename the theme directory you are using and the issue would be gone.
Regards
Forum: Fixing WordPress
In reply to: Parse ErrorJust replace the code you sent above with this.
Forum: Fixing WordPress
In reply to: Parse ErrorCan you try to change your function with this?
function data_copyright() { global $wpdb; $copyright_dates = $wpdb->get_results(" SELECT YEAR(min(post_date_gmt)) AS firstdate, YEAR(max(post_date_gmt)) AS lastdate FROM $wpdb->posts WHERE post_status = 'publish' "); $output = ''; if($copyright_dates) { $copyright = "©" . $copyright_dates[0]->firstdate; if($copyright_dates[0]->firstdate != $copyright_dates[0]->lastdate) { $copyright .= '-' . $copyright_dates[0]->lastdate; } $output = $copyright; } return $output; }
And revert back the plugin folder name to what it was.
- This reply was modified 7 years, 11 months ago by MagniGeeks.
Forum: Fixing WordPress
In reply to: How to autopulate state using ZipCodeHello Anjali1005,
Not sure if there is any plugin available.
But you can Use the GeoCoding API
For example, to lookup zip 751016 use a request like this:
https://maps.googleapis.com/maps/api/geocode/json?address=751016
Forum: Fixing WordPress
In reply to: Duplicate my site to another domain in order to translate itI think you can simply use All-in-One WP Migration Plugin to migrate your site to another domain and then do your stuff.
First, install this plugin on your current site and export/download the current site. Then do a fresh install of WordPress on the new domain and then install the plugin there. After that, you can import the downloaded file on your new site.
Regards
Forum: Fixing WordPress
In reply to: Warning: trim() expects parameter 1 to be string,Great, I am happy that you figured it out.
Regards
Forum: Fixing WordPress
In reply to: Parse ErrorI understand but you seem to be writing really good English :). Just go to filezilla and navigate to wp-content directory. There you can see plugins folder just rename it. Also can you share your website url ?
Forum: Fixing WordPress
In reply to: Strange behavior on numeric URLsReally a strange issue. Let me try to debug and see if there is any way to do it.
Regards
Forum: Fixing WordPress
In reply to: Parse ErrorHello stepat93,
Thanks for providing the details.The code seems to be fine although I am a bit curious to know what’s the purpose of this function. Anyways, try to rename your plugins directory using filezilla and try to access your site. Also if you could let me know the plugin you are using for caching on the site then I may provide you exact information on how to clear cache for that plugin.
First, try to rename the plugins directory and try accessing your site also try to access other URLs on your site and see if that works.
Regards
Forum: Fixing WordPress
In reply to: Images don’t show up in back-end media library or postsHello nishantkumar19,
The issue seems to be related to the URL of the images. The images are getting loaded over http and your site is using https. Try to do a search replace of URLs from http to https. Or try to use WP FORCE SSL plugin.
Regards
- This reply was modified 7 years, 11 months ago by MagniGeeks.
Forum: Fixing WordPress
In reply to: Expandable Menu Not Working On iPhoneSure, you can reach out to us if you need anything.
Forum: Fixing WordPress
In reply to: Parse ErrorHello stepat93,
Try clearing your cache. If you have varnish or any other caching plugin that was installed on your site. Also can you provide the code that was on functions.php?
Regards
Forum: Fixing WordPress
In reply to: Expandable Menu Not Working On iPhoneBasically, the issue is your Developer has created 2 menu icons for your website. One display for smaller screen and another for wide screen. If you can use the same menu across wide and smaller screen then it would work fine.
Regards