Patrick
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Car Manager] Add “Condition” voice in Car List item.phpIt’s possible…
<?php echo $vehicle->get_formatted_condition(); ?>
Ofcourse edit the item.php and upload it in your theme folder! theme/wp-car-manager/listings/item.php
<ul> <li class="wpcm-title"><?php echo $title; ?></li> <li class="wpcm-price"><?php echo $price; ?></li> <li><?php echo $mileage; ?></li> <li><?php echo $frdate; ?></li> </ul>
Replace with:
<ul> <li class="wpcm-title"><?php echo $title; ?></li> <li><?php echo $vehicle->get_formatted_condition(); ?></li> <li class="wpcm-price"><?php echo $price; ?></li> <li><?php echo $mileage; ?></li> <li><?php echo $frdate; ?></li> </ul>
- This reply was modified 8 years, 6 months ago by Patrick.
Forum: Plugins
In reply to: [WP Car Manager] List Filter But not any Vehicles Under1) Not possible! Also looking for this feature! It can just be a shortcode or widget +1
2) Also not possible see the documentation on the site!
Forum: Plugins
In reply to: [Favorites] show favorite post with thumbnailYou can create a custom loop and use the get_the_post_thumbnail function! Search for it or search github/google for examples.
Forum: Plugins
In reply to: [WP Car Manager] Car search form in a widget?Sorry maar ik moet deze nog even kicken! Ben ook nog opzoek naar een manier om het zoekformulier een plaatsje te kunnen geven… ??
Forum: Plugins
In reply to: [WP Car Manager] Car details layout doesn't workI agree with you now… I’m testing the plugin with my own created template and test it again!
So the style is included when you see the preview and post a listing!? So why is this not included in the single car details layout. I guess also that makes no sence at all.
For me it’s not a biggie i will modifie it to my needs! I whish you luck and hope this will be fixed soon in a future release.
Forum: Plugins
In reply to: [WP Car Manager] Car details layout doesn't workYou just need to add your own css for styling the tables etc. etc.
How hard could it be?
It’s just a few minutes work to make the things match your theme! ??
Look @ the classes in your browser source there are just a few…
If you want to remove the block with the big image and post date! Please note i did not test this so let me know it this is where you are after…
.post-image { display: none; }
Forum: Plugins
In reply to: [WP Car Manager] numbers of cars in listingThat is not possible yet i guess! You can set it in your plugin settings.
Forum: Plugins
In reply to: [WP Car Manager] Car details layout doesn't workI can confirm that there is no style for the detailpage also! Not sure if this was already the case in earlier versions. But if you’re creating your own custom theme it should not be a problem because its likely you will modify all the templates and styles yourself to match your theme.
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Customer Details / dynamic pricesI am working on custom fields, should be released soon, example:
[paytium_field type=”text” label=”Voornaam” /]Is it possible to do also a select type field/dropdown with options? Would be awesome.
But you would like it to be a base price like 20 euro’s and if a user selects a few checkboxes (+5, +10) it combines that with the base price?
Yes that’s exactly what i mean!
Thanks for getting back at me… Maybe the features suite a pro/payed version better! You can think about it at least to lounge some premium ideal wp plugins.
Thanks.
Patrick | ZaanmediaForum: Plugins
In reply to: [WP Car Manager] Email Us – Call Us – Button Hover ColorPlease note that i did not test this code!
Add the following to your css file:
.wpcm-contact-button:hover { background: #000; text-decoration: none; }
Forum: Plugins
In reply to: [WP Car Manager] Removing field from Summary in Individual ListingAdd this to your theme css:
.wpcm-summary-data tr:first-child { display: none; }
This should work good luck!
Hallo,
When i overwrite values the push function will not work anymore! because of the !important… to make it to work.
Forum: Plugins
In reply to: [WP Car Manager] Limit listing to 10This very moment!? ?? or later this month either way can’t wait on this update to be released and looking forward to it… ??
Forum: Plugins
In reply to: [WP Car Manager] Adding carsForum: Plugins
In reply to: [WP Car Manager] Adding carsYou need to add the shortcode with the text editor not the visual one in WP!
I see you use multiple addons for your vehicle related stuff! ??
Hope it helps…
Good luck!