Kiran
Forum Replies Created
-
AuthorPosts
-
Hi,
Make sure you have correct single quotes within code.
with correct single quote:
if ($post->post_type == 'gd_cv')with incorrect single quote:
if ($post->post_type == ‘gd_cv’)Kiran
Hi Peter,
Use following code snippet.
function _gd_custom_change_remove_favourite_text() { return __( 'Unfavorite', 'geodirectory' ); } add_filter( 'geodir_remove_favourite_text', '_gd_custom_change_remove_favourite_text', 10, 1 );Kiran
Hi Jotomas,
For the detailed explanation.
Here is my comments:
Catalan: https://inforoses.com/roses-tapas-club/tots/
One of listing “Al-Andalus” ( https://inforoses.com/roses-tapas-club/spain/catalunya/roses/tots/al-andalus/ ) has default category “Tots”. It has correct icon for default category “Tots” (see attachment).Spanish: https://inforoses.com/roses-tapas-club/todos/?lang=es
One of listing “Al-Andalus” ( https://inforoses.com/roses-tapas-club/spain/catalunya/roses/ruta-tapes-es/al-andalus/?lang=es/ ) has default category “Ruta Tapes”. It has correct icon for default category “Ruta Tapes” (see attachment).French: https://inforoses.com/roses-tapas-club/tous/?lang=fr
One of listing “Al-Andalus” ( https://inforoses.com/roses-tapas-club/spain/catalunya/roses/ruta-tapes-en/al-andalus/?lang=en/ ) has default category “Ruta Tapes”. It has correct icon for default category “Ruta Tapes” (see attachment).French: https://inforoses.com/roses-tapas-club/tous/?lang=fr
One of listing “Al-Andalus” ( https://inforoses.com/roses-tapas-club/spain/catalunya/roses/ruta-tapes-fr/al-andalus/?lang=fr/ ) has default category “Ruta Tapes”. It has correct icon for default category “Ruta Tapes” (see attachment).The map marker icon for the listing is the icon of category which is chosen as a default category for that listing.
Let us know if you have any query.
Thanks,
KiranMay 7, 2018 at 4:35 am in reply to: Custom field fieldset tabs – gd_tab and number – can we do name? #429336Hello,
Use following code snippet. It will assign unique id to each fieldset tab.
function _gd_custom_tab_fieldset_class( $tabs ) { $new_tabs = array(); foreach ( $tabs as $key => $tab ) { if ( strpos( $key, 'gd_tab_' ) === 0 ) { $tab_id = 'gd_tab_' . sanitize_html_class( $tab['heading_text'] ); } else { $tab_id = $key; } $new_tabs[ $tab_id ] = $tab; } return $new_tabs; } add_filter( 'geodir_detail_page_tab_list_extend', '_gd_custom_tab_fieldset_class', 9999, 1 );The tab id generated based on fieldset title. Ex: if field set title is “Contact Info” then tab id will be “gd_tab_ContactInfo”. Now you can use add style for specific that tab like
#gd_tab_ContactInfo {
// yous style here
}Thanks,
KiranHi Silks,
It shows me “Access Denied – GoDaddy Website Firewall” error. Can you investigate your server admin about this error.
Also it can’t save marker cluster settings from GeoDirectory > Design > Marker Cluster. It seems one of plugin conflicts with this.
Please try after disabling non GD plugins. Also make sure you have not any core files changes.
Let us know.
Thanks,
KiranThis reply has been marked as private.This has been fixed.
Kiran
Hi Brad,
The problem has been fixed. Not sure what was the actual reason but it seems the data migration was failed during invoicing setup. But now i have fixed it.
Please check and let us know.
Thanks,
KiranThis reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hi Joy,
FTP credentials no longer working. Can you double check please?
It seems one of plugin conflicts and breaks the preview page. Even the footer also not rendered on preview page.
Try to disable non GD plugins and check it it solves or still there.
I will check again once FTP credentials will work for me.Thanks,
KiranHello Jim,
Without checking the “broadcast plugin” i can’t say how to deal with the problem.
If you are using any third party plugin or customization code creating listing, then you just have to assign category properly.
Here only issue is the category not assigned properly to the listing and it causing problem.Customization should be done via using hooks, do’t edit any core files of plugin/theme. Otherwise it may break original functionality.
Let us know.
Thanks,
KiranHi Brad,
“ERR_TOO_MANY_REDIRECTS” error has been fixed but now it going to blank screen. It seems something conflicts there. Please confirm you have PHP session enabled on your server.
Please provide us FTP credentials, we need to do some debugging to find excat cause for the problem.
Kiran
-
AuthorPosts