Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Yes please provide FTP, i dont see the problem on my test site.
Thanks,
Stiofan
Hello Benjamin,
You would have to either provide FTP or a copy of the theme so i could try to fix the conflict.
Thanks,
Stiofan
Hello,
Did you already start from scratch? I cant reach your site. If you dont have much data, i would think it would be good to restart in your case as their seems to be some weird corruption going on. Keep us posted.
Thanks,
Stiofan
December 27, 2015 at 2:02 pm in reply to: Schema Type for Custom Post Type – what is schema type ? #65438I did not realise this was called as it’s run and so can’t be filtered from a child theme, it will have to be filtered from a plugin, below is the code to make the plugin, you can simply do a Ctrl + S and save this file and then add it to your plugins directory and it will add the schemas (it is imortant you keep the file name so it is loaded a-z and loads before the GD core)
https://gist.githubusercontent.com/NomadDevs/6547561ed35da6a82e56/raw/ccaa5162aadc2bb085c677a655d2a1ff62ede25b/add_new_gd_schema.phpThanks,
Stiofan
Hi Dylan,
Thanks for the info, please try this code:
add_filter('geodir_login_url','change_geodir_login_url',10,3); function change_geodir_login_url($login_url,$args,$gd_page_id){ //change the url to whatever you want. $login_url = 'http://mysite.com/my-login-page'; //add query args back if($args){ $login_url = add_query_arg($args,$login_url ); } return $login_url; }Thanks,
Stiofan
Thanks for the info, i added the function to your theme functions.php, if you update your theme you wil have to add it back (you should really use a child theme)
//get term meta field and strip slashes if (!function_exists('get_tax_meta_strip')){ function get_tax_meta_strip($term_id,$key,$multi = false){ $t_id = (is_object($term_id))? $term_id->term_id: $term_id; $m = get_option( 'tax_meta_'.$t_id); if (isset($m[$key])){ return is_array($m[$key])? $m[$key] : stripslashes($m[$key]); }else{ return ''; } } }Thanks,
Stiofan
Hi Dylan,
Firstly everything should just work if you have everything upto date and are using the standard GD login forms. The reply you mentioned by me was for a customers custom login page redirect.
If your standard redirect is not workng firstly make sure everything is updated, and then if still not working provide wp-admin and FTP so we can debug.
If i have misunderstood something, please explain exactly what you are trying to do.
Thanks,
Stiofan
Hi Jen, This is a common issue when transfering DB’s, there are many solutions depending on what stage you are at, please find the one most appropriate from stackoverflow: https://www.google.co.uk/search?q=Duplicate+entry+‘0’+for+key+‘PRIMARY’
Thanks,
Stiofan
OK now i see it on FF, before i did not.
Something is replacing /wp-content/plugins/ with /ext/ for lots of images and css/js, this is very strange, i would guess its a caching plugin of some sort but it could also be a server thing.
Please try disabling any caching services and/or any non GD plugins to see if that resolves it.
Thanks,
Stiofan
what looks like that?
Everything looks ok to me, i can’t help you unless i know what is broken or have the details to test what is broken…
Stiofan
Hello,
Your site seems to work for me on chrome and FF, what is the problem, how can i recreate?
Thanks,
Stiofan
I am not familiar with VC (and don’t plan to be), but i assume you could still create a custom page template and add a widget area in there (unless it takes over the entire page template in which case you should ask VC guys how to add a widget area.
Thanks,
Stiofan
You can do it at the same time, just edit the heading text such as
$tab_array['reviews']['heading_text'] = "User Reviews";Their is not an easy solution for the image thing, you could hide it with CSS pretty easily though.
Stiofan
Hello,
You might be better not having the homepage as the GD homepage and have a normal homepage to use VC and try our shortcodes in it? ( i have not used VC much )
Thanks,
Stiofan
-
AuthorPosts