Patrick
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Car Manager] Featured Image Displayed TwiceIt’s a theme issue check your single.php in your specific theme folder
or
Put this in your themes CSS
.et_post_meta_wrapper img {display:none;}
Forum: Plugins
In reply to: [WP Car Manager] Author + pay layoutAdd the following in your custom theme css.
.blog-post-meta {display: none;}
Forum: Plugins
In reply to: [WP Car Manager] Contact formthe contact form should be displayed on the location under the button in your single/vehicle post. If you want to create a popup you need to implement it yourself and create your own button that open the modal with your contact form with eg the same code or a different approach and just remove the email so the standard contact/email button will disappear.
Forum: Plugins
In reply to: [WP Car Manager] Contact formYou can do something like this in your themes functions.php
See example:
function wpcm_contact_form() { echo do_shortcode( '[contact-form-7 id="200" title="Contact form 1"]' ); } add_action( '<strong>wpcm_vehicle_summary</strong>', 'wpcm_contact_form', 40);
Good luck! And don’t forget to update your [shortcode].
There are if i’m not mistaken more hooks available that you can try!
Simply replace wpcm_vehicle_summary with any other hook. This means you can show your form to different area’s/positions in the template.
- This reply was modified 6 years, 11 months ago by Patrick.
Forum: Plugins
In reply to: [WP Car Manager] add a new categoryNot sure for a long term solution! Please note that this solution is not the proper solution for your needs! Since you need to modify the file every time when there is a new update for wp-car-manager. But you can always block auto updates if you want. And if you’re fine with it that you need to change it every time after a update that this is the easy quick solution to get what you need.
You can simply change the code yourself for the time being.
\wp-content\plugins\wp-car-manager\src\Vehicle\Data.php
Search for:
public static function get_conditions() { return apply_filters( 'wpcm_conditions', array( 'new' => __( 'New', 'wp-car-manager' ), 'used' => __( 'Used', 'wp-car-manager' ) ) ); }
Replace with:
public static function get_conditions() { return apply_filters( 'wpcm_conditions', array( 'new' => __( 'New', 'wp-car-manager' ), 'used' => __( 'Used', 'wp-car-manager' ), 'classic' => __( 'Classic', 'wp-car-manager' ), '0km' => __( '0KM', 'wp-car-manager' ) ) ); }
Forum: Plugins
In reply to: [WP Car Manager] Feature image showing 2 times in the car pageThis is a theme related issue! Check e.g. your themes single.php
Or add this to your stylesheet (custom.css) or theme css:
.wpcm_vehicle .feature-box { display: none; }
- This reply was modified 6 years, 11 months ago by Patrick.
Forum: Plugins
In reply to: [Kanban Boards for WordPress] Adding “like” buttons+1
Forum: Plugins
In reply to: [Customer Chat for Facebook] How to set different languagesThanks for this awesome plugin. Will test it out soon! What about if you run this on website that supports more than one language? Will the chat be in all available languages? or will it only be one default language?
Forum: Plugins
In reply to: [WP Car Manager] Do not display “0”WP Car Manager’s templates can be overridden from your theme by copying them to yourtheme/wp-car-manager/, or you can add your own new ones to the same folder. They are then referenced in the shortcodes.
Example: yourtheme/wp-car-manager/single-vehicle/price.php
You shouldn’t modify or delete any files from the plugin folder!- This reply was modified 6 years, 12 months ago by Patrick.
Forum: Plugins
In reply to: [WP Car Manager] Video galleryEverything is possible but this feature is not included in wpcarmanager. You can find/hire a developer that can build the extension/plugin that fits your needs like support for 360degree videos! ??
Forum: Plugins
In reply to: [WP Car Manager] Feature image showing 2 times in the car pageThis is a theme issue and not wpcarmanager related.
Forum: Plugins
In reply to: [WP Car Manager] Needs LocationsAlso looking for all those options and more… +1
Forum: Plugins
In reply to: [WP Car Manager] Car detailpage not found.Did you resaved your permalinks? I see you already have it figured it out already :O
- This reply was modified 7 years, 2 months ago by Patrick.
Forum: Plugins
In reply to: [WP Car Manager] Frontend submission not showing upNot totally sure did you had a look at the settings page and turn off the approve by administrator or something like that?
Forum: Plugins
In reply to: [WP Car Manager] Gallery on Mobile DevicesI don’t like the the prettyPhoto stuff at all! It also looks so outdated.
Also trying to change something more modern/usefull. I will try to figure out how we can implement something like photoswipe(.com) into wp car manager.
- This reply was modified 7 years, 6 months ago by Patrick.