Evert
Forum Replies Created
-
Thanks.
Thank you. Almost there!
On variable products the Add to cart section is visible again, but there is still an error: https://www.dropbox.com/s/3ocp4y7vltez2cq/Screenshot%202016-01-04%2017.12.45.png?dl=0
Verified that the problem is caused by WOOF after the latest update. Went back to TwentySixteen, problem still there. Disabled WOOF, problem gone.
Console: https://www.dropbox.com/s/w3laun6d4mmfttq/Screenshot%202016-01-04%2016.30.23.png?dl=0
https://ww.wp.xz.cn/support/topic/after-update-from-v112-to-higher?replies=1 did not work for me.
Any suggestions?
Forum: Plugins
In reply to: [WP Job Manager] WP Job Manager – IssueThanks Mike!
Forum: Plugins
In reply to: [WP Job Manager] WP Job Manager – IssueAnd did you enable wp_debug? http://codex.ww.wp.xz.cn/WP_DEBUG
If so, what errors are you receiving?
Forum: Plugins
In reply to: [WP Job Manager] WP Job Manager – IssueBest is to revert to the default theme without plugins enabled and enable all plugins one by one for troubleshooting.
Forum: Plugins
In reply to: [WP Job Manager] WP Job Manager – IssueHi Anouar,
although I think you can safely reinstall the plugin the best way is to make a backup of your database through phpmyadmin (or whatever your host is offering) before doing so or export the jobs through Tools > Export (select jobs on the second step or export everything) from the dashboard.
Forum: Plugins
In reply to: [WP Job Manager] What line do I change here for job type filters?@cayonone I have just tried the suggested code and I can confirm it is working (beside a missing end tag of the unordered list ) on my dev server.
Try replacing the content of your-theme/job_manager/job-filter-job-types.php with the following:
<?php if ( ! is_tax( 'job_listing_type' ) && empty( $job_types ) ) : ?> <ul class="job_types"> <?php foreach ( get_job_listing_types() as $type ) : ?> <li><label for="job_type_<?php echo $type->slug; ?>" class="<?php echo sanitize_title( $type->name ); ?>"><input type="checkbox" name="filter_job_type[]" value="<?php echo $type->slug; ?>" id="job_type_<?php echo $type->slug; ?>" /> <?php echo $type->name; ?></label></li> <?php endforeach; ?> </ul> <?php elseif ( $job_types ) : ?> <?php foreach ( $job_types as $job_type ) : ?> <input type="hidden" name="filter_job_type[]" value="<?php echo sanitize_title( $job_type ); ?>" /> <?php endforeach; ?> <?php endif; ?>Forum: Plugins
In reply to: [WP Job Manager] Apply button not functionningHi Olivier,
you can easily add code to your header.php or footer.php to use a different provider of stats. We have had no problems with Google Analytics on our clients sites.
Cheers, Evert
Forum: Plugins
In reply to: [WP Job Manager] Apply button not functionningI’ve just spotted a javascript error on your site (st_go not defined) which looks related to WordPress.com stats.
Forum: Plugins
In reply to: [WP Job Manager] Remove Share Buttons BarIt’s in your template. See this link for a fix, help and support regarding this issue http://www.kriesi.at/support/topic/blog-remove-the-description-share-this-entry/
Forum: Plugins
In reply to: [WP Job Manager] Remove Share Buttons BarWhat template + other plugins are you using? As far as I know there are no share buttons added by the plugin.
Forum: Reviews
In reply to: [WP Job Manager] Working BetterHi @jimf81,
it quite annoying when your site is ruined when trying out a plugin. It would be helpful to others if you could tell us the template and which plugins you had activated at the moment the problems occurred. It gives @mike the opportunity to look into the probable cause and you can save others the time you had to spend on restoring your site.
Keep it up and thanks for trying the plugin. Hopefully we’ll see you back in the (near) future. Lots of people here to assist you.
Cheers!
Forum: Plugins
In reply to: [WP Job Manager] String translation with WPMLIf I am correct you can change the %s values by defining the language of your WordPress installation. You can do so in your wp-config.php.
For example
define( 'WPLANG', 'de_DE' );See http://codex.ww.wp.xz.cn/Installing_WordPress_in_Your_Language for the instructions. Note that you will have to use the appropriate country_languages codes. There are two links on the above page that can help you find the right combination.
Forum: Plugins
In reply to: [WP Job Manager] Export jobs to external site using XMLHere: http://en.support.wordpress.com/export/. That will give you a file. You can also use the Indeed addons like @mike suggested or the default XML feed http://www.fourleafed.com/feed/?post_type=job_listing. It is also possible to tweak this, so you can set which fields you want included in the feed.