Giri
Forum Replies Created
-
AuthorPosts
-
Thank goodness. I feel relieved now 🙂
Hey Mario, I just spoke with stiofan, he said the problem is with WP theme editor. He said sometimes it may not load existing code properly. This is a rare case. So looks like that problem happened in our case.
I’m not sure how much modifications you have made in your child theme. Do you have any backup? Or can you ask your hosting to recover that file.
In any way, don’t worry. I’ll be here to fix your problem if we can’t able to get backups.
Thanks and sorry for the inconvenience.
If there was some existing code I always append my code and never I would never replace that code with mine.
So I think i’m missing something.
Hello Mario, When I load your functions.php file, it was empty. Thats why I put new <?php tag and then added my custom code.
Am i missing something?
Hi sorry about your problem.
But you can modify the class using our hooks.
I have added the following code in your child theme. Let me know how this goes.
Thanks
remove_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1); add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link_modified', 1); function geodir_add_to_favourite_link_modified() { global $post, $preview; if (!$preview && geodir_is_page('detail')) { ?> <p class="edit_link geodir-favorite-html-wrap"> <?php geodir_favourite_html($post->post_author, $post->ID); ?> </p> <?php } }
Hi, I have applied patch on your website. Can you test it once again and let us know whether our patch fixes your problem or not?
Thanks
Hi D.D,
I have fixed that bug. Can you post your ftp details? So we can apply the patch on your website?
You are welcome. I’ll mark this as resolved.
Thanks
Those strings are translated now.
Thanks
June 20, 2016 at 4:48 pm in reply to: move Drop Files to upload box to the top in add listing #212368Hi there,
The code can be found in in this file
wp-content/plugins/geodirectory/geodirectory_template_actions.php
Function: geodir_action_add_listing_form()
See around line number 2400. There is no easy way to do this without duplicating huge chunk of code.
Duplicate the code only if it is mandatory.
Here are the steps. Us the following code in your child theme
remove_action('geodir_add_listing_form', 'geodir_action_add_listing_form', 10); add_action('geodir_add_listing_form', 'geodir_action_add_listing_form_modified', 10); function geodir_action_add_listing_form_modified() { //your modified code goes here }
Hi there, we have moved the code BuddyPress integration addon from Directory starter theme.
Translation strings can be found in BuddyPress integration addon.It uses wrong textdomain. “directory-starter” Its supposed to use “gdbuddypress”
So if the translation still not working, then post your ftp details. We will change that to correct textdomain.
Thanks
Ok You are welcome. I’ll mark this as resolved
I have just checked our code.
Edit notification not available when the user is admin.
Are you editing the post as normal user? or admin?
I see conflict with font awesome. Your usernoise plugin adds some other version of font awesome. That is what causing that my account bug.
If you need uservoice font awesome, then hide supreme caret icon using this code.
.sd-my-account-link .fa { display: none; }
Deactivating the plugin won’t erase Booster cache thats already saved on the disk. I have activated gd booster and erased the cache.
It displays fine now.
-
AuthorPosts