misticjeff
Forum Replies Created
-
I have that… still no effect.
Yes, cleared cache/cookies and F5…
- This reply was modified 1 year, 4 months ago by misticjeff.
Was hopeful but that did not work… added it to additional CSS with no effect.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Admin Listing DetailsEveryone’s mileage may vary and it does require a file edit, but if you look in this file: acadp-public-listings-list-display.php
for the following code:
<?php if ( $can_show_price && isset( $post_meta['price'] ) && $post_meta['price'][0] > 0 ) : ?> <div class="col-md-3 text-right acadp-price-block"> <?php // price $price = acadp_format_amount( $post_meta['price'][0] ); echo '<p class="lead acadp-no-margin">' . esc_html( acadp_currency_filter( $price ) ) . '</p>'; ?> </div> <?php endif; ?> </div>
and replace with:
<?php if ( $can_show_price && isset( $post_meta['price'] ) ) : $price = $post_meta['price'][0]; ?> <div class="col-md-3 text-right acadp-price-block"> <?php if ( $price > 0 ) { // price $formatted_price = acadp_format_amount( $price ); echo '<p class="lead acadp-no-margin">' . esc_html( acadp_currency_filter( $formatted_price ) ) . '</p>'; } else { echo '<p class="lead acadp-no-margin">FREE</p>'; } ?> </div> <?php endif; ?> </div>
The word ‘FREE’ will show up where normally the price would be displayed (see photo in first post).
Please as always backup your site and files prior to attempting any file edits.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Admin Listing DetailsAnd any suggestion on where to place additional CSS to make this happen??
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Shortcode showing in URLFigured this out…. my partner was messing around in the advanced settings area and bracketed the slug! argh… anyway, all good.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Change Wording in Listing FormThank You! Perfect!
Well that’s what would seem to be the route but it doesn’t work that way. Let me explain further.
I started with a single directory and then after adding approx 50 items decided I wanted to try Multi Directory. I enabled Multi Directory, then went to Directory Builder and hit ‘Create New Directory Type’ where I created a directory called ‘Services’. Below is the Services Directory and ‘all’ its ‘search form’ options!
Now, to further add, I also exported the original directory JSON file and then did an import for a new directory. That directory had ALL the search fields available since it was a clone of the default directory that is enabled when installing the plugin.
Will do! appreciate as always the responses.
I have Events Manager Pro 3.2.7/Events Manager 6.4.5.1
It’s not working as described. I tried it again. Created a custom booking form with ONLY name and Agreement Checkbox (both required)
I then created an Event, enabled Bookings and chose my ‘custom’ booking.
After Publishing the Event, this is what shows for a logged in user.
and this is what is shown to a non logged in / guest user.
Additionally, I have ‘guest bookings’ enabled, ‘No User Bookings’ disabled.
- This reply was modified 1 year, 6 months ago by misticjeff.
Yes, but getting a custom booking form to work is a whole different matter. Even when creating a new event, selecting my custom booking form, logged in users see their name & comment field and guest users see their name, email and comment field. No sign of the custom form selected when creating the event…
You kind sir are a Saint!! thanks again!!
Bingo!! Ding, Ding, Ding….!!! Thank You Very Much!
Yeah, unfortunately that just adds padding within the category section itself but not between the two.
Perhaps someone else will chime in and i’ll keep chipping away…. Thanks again so much for all the time you’ve put in to help me, it’s greatly appreciated!
Sorry… duh…