Patrick Groot
Forum Replies Created
-
I think we solved this issue by email. The folder name of the “wp-car-manager” plugin didn’t match the originals plugin folder name causing the plugin not to activate.
Will close this ticket as resolved.
Sorry for the late response.
Did you managed to get it working?
Did the logs show any type of errors on your WordPress installation?Are you able to provide us with the website and/or login details via email? You can reach out to me personally at [email protected] so i can have a quick peak.
Forum: Plugins
In reply to: [WP Car Manager] Listing of cars not showing.It’s really hard to figure out what it could be…
Another thing that could have happened is that you’re having issues with auto expiring listings that make them all disappear?
Another advice is to turn on your wp debug and checkout your logs within the wp-content folder. Just to see if there are any noticeable errors.
Add paste the code BEFORE /* That’s all, stop editing! Happy blogging. */ in the wp-config.php file. You can find this file in your root directory of your wp installation.
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 );
- This reply was modified 2 years, 10 months ago by Patrick Groot.
- This reply was modified 2 years, 10 months ago by Patrick Groot.
- This reply was modified 2 years, 10 months ago by Patrick Groot.
Forum: Plugins
In reply to: [WP Car Manager] Listing of cars not showing.I’m not sure but you can try and change
make=”ATVS/UTVS”
with eg
make_id=”ID”
or just simple remove the make=”something” from the shortcode to see if vehicles are showing up.
You could also try to rebuild your permalinks to see if that makes any difference.
- This reply was modified 2 years, 10 months ago by Patrick Groot.
- This reply was modified 2 years, 10 months ago by Patrick Groot.
- This reply was modified 2 years, 10 months ago by Patrick Groot.
- This reply was modified 2 years, 10 months ago by Patrick Groot.
Forum: Plugins
In reply to: [WP Car Manager] Car Listings with PHP v8.0You need to check your php logs what’s going on… source code shows there is a critical error with WordPress when you paginate.
- This reply was modified 3 years, 1 month ago by Patrick Groot.
Forum: Plugins
In reply to: [WP Car Manager] Import Images with CSV Import FileProbably that isn’t an option for importing images with the importer since it’s not mentioned in the docs and/or example csv. Not sure if there is something build for that either you should have a look in the code of csv importer plugin and see if there are specific functions for images/uploading.
So my guess is you would need to add/upload the images by editing the vehicles one by one.
Forum: Plugins
In reply to: [WP Car Manager] Listing design?Everything is possible! ??
But you need to customize the templates from the plugin wp-car-manager.
See documentation on their website.
If you are not a developer then you probably want to hire one since there is only one layout. ??
- This reply was modified 3 years, 1 month ago by Patrick Groot.
Forum: Everything else WordPress
In reply to: Incorrectly added as a plugin contributorWill fix this! EDIT: FIXED
- This reply was modified 3 years, 6 months ago by Patrick Groot.
Forum: Plugins
In reply to: [WP Car Manager] One car listing by itselfAs you can see your pictures don’t have the same/fixed size.
So what your theme should have implemented the same aspect ratio/dimensions for the thumbnail.
See the picture of the AUDI R8
- This reply was modified 3 years, 11 months ago by Patrick Groot.
- This reply was modified 3 years, 11 months ago by Patrick Groot.
- This reply was modified 3 years, 11 months ago by Patrick Groot.
Forum: Plugins
In reply to: [WP Car Manager] Plugin Removed From WordPressThe question is what the security issue is? Someone that reported this could have notified its users here or on Github so the owner or users could have patched it?
Forum: Plugins
In reply to: [WP Car Manager] Showing the last cars added, on the home pageHi Enrico,
There is a developer on Github that created a plugin for just doing that!
Cheers and good luck!
Forum: Plugins
In reply to: [WP Car Manager] UK PoundsYou could have
1) Installed the plugin yourself to check it out
2) Have a look at the codebut anyway i’m certain that pounds are supported, cheers! ??
Forum: Plugins
In reply to: [WP Car Manager] Navigation arrows on the images are goneI have no clue but you can see in the source of your code that the arrows are not found!
Forum: Plugins
In reply to: [WP Car Manager] Search Bar1) That is not an issue from the plugin that you don’t see any results to the wordpress search. But you can easily add this yourself with some code.
add_filter( 'pre_get_posts', 'prefix_cpt_search' ); function prefix_cpt_search( $query ) { if ( $query->is_search ) { $query->set( 'post_type', array( 'post', 'page', 'wpcm_vehicle' ) ); } return $query; }
Please note above snippet is not tested!
You should add this to your themes functions.php
2) Can’t see anything wrong with the wpcarmanager plugin all is working.
- This reply was modified 5 years, 7 months ago by Patrick Groot.
- This reply was modified 5 years, 7 months ago by Patrick Groot.
Forum: Plugins
In reply to: [Admin Live Search] FeedbackHi Humberto,
Just coming back to the sorting columns and i guess it must be a bug in general.
Tested it in the following tables table
– custom post type (created by me)
– WordPress pages
– WordPress postsWhen clicking the sort(table head(column date)) that should show the content in a different order triggers the search and doesn’t reorder the content in the tables.
Here is a video: https://tinytake.s3.amazonaws.com/pulse/qa-tna/attachments/10098326/TinyTake11-03-2019-01-24-41.mp4
Please ignore my mouse its bad refenrence the recorder doesn’t play nice with a high resolution laptop-screen.
- This reply was modified 5 years, 8 months ago by Patrick Groot.
- This reply was modified 5 years, 8 months ago by Patrick Groot.