Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Great, glad you got your maps working 🙂
Please follow these instructions for GA: https://wpgeodirectory.com/docs/gd-core-plugin-google-analytics/
Thanks,
Stiofan
The problem was you had a hidden character in your child theme functions.php file at the very start, this is invisible in most cases unless you have specific settings in your editor, In future you can test by copy/pasting your page into this site: http://jsonlint.com/
I simply removed the red dot and re-saved and it worked.
Thanks,
Stiofan
What part of the address are u worried about changing?
Stiofan
Hi Scott,
You can renew your membership by going to My Account>Downloads> and you will see a renew link there.
For your problem, are you sure you have allowed that CPT to be added via the frontend, GD>Design>Navigation>Allow post type to add from frontend
Thanks,
Stiofan
Yes i got this cleared up for Dan 🙂
This reply has been marked as private.Hi, Can you provide FTP info so i can debug this.
Thanks,
Stiofan
I ran the upgrade functions again by GD Tools>Clear all version numbers, and after i added a website and it now works, i guess a upgrade function failed to run.
Thanks,
Stiofan
Have u changed the output function? If not please provide FTP info.
Stiofan
Hi, can you provide wp-admin and FTP and i will check things over.
Thanks,
Stiofan
FTP works but opens to a blank folder…
Please resolve or you can apply the patch yourself: gdevents_template_functions.php 1374:
change to:$join .= " JOIN " . $wpdb->prefix . "icl_translations icl_t ON icl_t.element_id = " . $wpdb->posts . ".ID";Thanks,
Stiofan
November 16, 2016 at 4:01 pm in reply to: losing content when choosing Package on add listing page #304848Where exactly do you want to add stuff? You do know you can jsut add content to the page it’s self?
Stiofan
November 16, 2016 at 12:14 pm in reply to: losing content when choosing Package on add listing page #304740You would want to stop the payments manager from restricting the content so you would do something like this
`// stop payment manager filtering content length
$filter_priority = has_filter( ‘the_content’, ‘geodir_payments_the_content’ );
if ( false !== $filter_priority ) {
remove_filter( ‘the_content’, ‘geodir_payments_the_content’, $filter_priority );
}$id = 890;
$post1 = get_post($id);
$content1 = apply_filters(‘the_content’, $post1->post_content);if ( false !== $filter_priority ) {
add_filter( ‘the_content’, ‘geodir_payments_the_content’, $filter_priority );
}`Stiofan
Hi Derek,
The link depends on if a location is set for the user but this should not be the case, i have added this as a bug and we will update you when resolved.
Thanks,
Stiofan
-
AuthorPosts