Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
October 31, 2014 at 6:12 pm in reply to: Map shows no records by default in ie9 until you click a custom type link below #20221
Good spot Adrian, this was a weird bug where because there is no support for the placeholder tag in those IE versions that the value is replaced as the placeholder and so the map was searching for listings with “Title” in it. I have fixed this and it will be in the next version.
Thanks,
Stiofan
none of this should be happening, your WP Settings>media ” Organize my uploads into month- and year-based folders” should be ticked. and you should have all the latest version of core +addons installed, if so please pass me wp-admin, ftp and db access and an example of how to recreate the problem and i will take a look.
Thanks,
Stiofan
Thanks, unfortunately there is no easy way to fix this as the theme does not allow you to relace functions and does not have any hooks. my advice would be in the file admin/main/options/01.general-settings.php around line 295
change this:
if ( is_page() ) {
to this:
if(geodir_is_geodir_page()){return;} if ( is_page() ) {
This will be fixed in the next version of core.
Stiofan
Yes this looks like a bug, it will be fixed in the next version.
if u want you can edit the file geodir_payment_actions.php around line 463, replace function geodir_payment_response with this:function geodir_payment_response($template){ if(isset($_REQUEST['pay_action']) ) { global $wp_query; if($_REQUEST['pay_action'] == 'cancel'){ $template = locate_template( array( 'geodirectory/cancel.php' ) ); if ( ! $template ) $template = GEODIR_PAYMENT_MANAGER_PATH . '/geodir-payment-templates/cancel.php'; } if($_REQUEST['pay_action'] == 'return'){ $template = locate_template( array( 'geodirectory/return.php' ) ); if ( ! $template ) $template = GEODIR_PAYMENT_MANAGER_PATH . '/geodir-payment-templates/return.php'; } if($_REQUEST['pay_action'] == 'success'){ $template = locate_template( array( 'geodirectory/success.php' ) ); if ( ! $template ) $template = GEODIR_PAYMENT_MANAGER_PATH . '/geodir-payment-templates/success.php'; } } return $template; }
You will then be able to move the template to a folder in your child theme called geodirectory
Thanks,
Stiofan
u can replace this js file in ur location manager to test
what version of advanced search do u have?
Stiofan
October 30, 2014 at 6:21 pm in reply to: Advanced search form (customize my search) does not display on mobile or tablet #20146Well you can do different css positions for different sizes if u do responsive CSS but i would try not to mess with things too much if ur not sure.
Stiofan
it’s in payment manager and is called return.php
Stiofan
yes, i believe it’s in latest.
October 30, 2014 at 6:05 pm in reply to: Advanced search form (customize my search) does not display on mobile or tablet #20141it is there it’s just off to the side, you have the CSS hardcoded, you would need to seek a developer to fix your CSS.
Thanks,
Stiofan
DO you mean the menu item? Quickest way might be to just add your own menu items.
Stiofan
This reply has been marked as private.can you please check our demo to test now http://dropct.com/avada/
Stiofan
I guess that’s a short code there, have u used the paramiter? like this
[geodir_location_tab_switcher autoredirect="1"]
Stiofan
-
AuthorPosts