Simone
Forum Replies Created
-
AuthorPosts
-
Hello, add this in the functions.php in your child theme
remove_action('geodir_before_main_form_fields' , 'geodir_add_claim_fields_before_main_form', 1); add_action( 'geodir_before_main_form_fields', 'geodir_add_claim_fields_before_main_form_new',10 ); function geodir_add_claim_fields_before_main_form_new() { global $post; $current_posttype = geodir_get_current_posttype(); if($current_posttype == "gd_event") { $ownerowner= "Event Owner/Associate?"; // $ownerowner=CLAIM_EVENT_OWNER_ASSOCIATE; this is for a future translation in the po file } else { $ownerowner=CLAIM_BUSINESS_OWNER_ASSOCIATE; } $is_claimed = isset($post->claimed) ? $post->claimed : ''; ?> <div class="required_field geodir_form_row clearfix"> <label><?php echo $ownerowner;?><span>*</span> </label> <input class="gd-radio" <?php if($is_claimed == '1'){echo 'checked="checked"';} ?> type="radio" name="claimed" value="1" field_type="radio"> <?php echo CLAIM_YES_TEXT;?> <input class="gd-radio" <?php if($is_claimed == '0'){echo 'checked="checked"';} ?> type="radio" name="claimed" value="0" field_type="radio"> <?php echo CLAIM_NO_TEXT;?> <span class="geodir_message_error"><?php echo CLAIM_DECLARE_OWNER_ASSOCIATE;?></span> </div><?php }
Hello, i don’t know if you want to disable every notification about th ecomments, if so, just go in Settings/Discussion (/wp-admin/options-discussion.php) and unflag
E-mail me whenever Anyone posts a comment
A comment is held for moderationAugust 28, 2014 at 1:27 pm in reply to: Map pop up info box not following prices and pyament plugin #13524Let’s hear Stiofan, I did a test on my website and it seems it isn’t retroactive.
Theorically, when starting a new website, you go live after setting up prices and categories and custom types, custom fields etc..you don’t populate the website and then change the prices/packages. That’s my 2 centstry
.geodir-addtofav { display:none; }
August 28, 2014 at 1:16 pm in reply to: Map pop up info box not following prices and pyament plugin #13521Yes, it will work on the new-posted listings, it isn’t retroactive
Hello, you can manage the menu using the Menu in wordpress (Appareance/Menu)
I’ve tried to change the role for the registered users to author but The issue still happens, and the user when is going to edit the page still sees the “not found page”, this is not happening with the admin (of course) so it’s not a permalink problem but permission problem, I think . Ive tried to create a new price package, but no luck, tried also to change how the claim process is handled (not with the auto approval), no luck either.
Paypal is working fine.
I’ll alert Stiofan so he can look at itHello Stacey, this is doable using the menus in WordPress (Appearance/Menu).
See attachmentEdit: cross post with Paolo 🙂
August 27, 2014 at 8:45 pm in reply to: Map pop up info box not following prices and pyament plugin #13414You need to filter the custom field in the option in Geodirectory / your custom type (e.g. Place Settings). then expand the field and tick the package you want it to be displayed (Only paid in your case)
see attach.…you want to change the way how the dropdown looks like?
You can setup a widget area (better than a menu area in your case) or if you need just something “static” you can add this, for example, in your header.php (to copy in your child theme)
<div id="menutop"><a href="#">first link</a> - <a href="#">second link</a> - <a href="#">third link</a></div>
and then in the style.css you can tweak the look and feel, padding etc.
#menutop { float: right; }
I’ve added the div in the header.php right after
<div id="inner-header" class="wrap cf">
around row 52
you can see some sample links here in my test siteHi, I don’t know how you want to do it, but you can then customize only the location switcher
li.menu-item, #menu-item-gd-location-switcher { your style here }
using !important on the css
I second that, I’d go with GeoDirectory
Hi ,
are you placing the po/mo files in /wp-content/languages/ ?you’re welcome, we’re here for this 🙂
-
AuthorPosts