djjetta
Forum Replies Created
-
I have the same Problem on a lot of my Customer Pages.
Where can i find a description how to add custom Fields of a custom Posttype. E.g. custom Post Types and custom fields in Greyd Suite.
- This reply was modified 3 months ago by djjetta.
But when will it be released? We are waiting round about three months for this fix.
I have the same issue. Everytime when i try to set the default taxonomy to one from a custom posttype and hit save the change isn’t successful. Any other settings working correct and can be saved.
I use the Greyd Suite where Custom Posttypes were integrated. In an earlier Version of your Plugin it worked correctly, too.Thanks
Forum: Plugins
In reply to: [Jobs for WordPress] after update to 1.72 apply now online Form not shownFound the villain.. There is a conflict with newest update of Cornerstone page builder 3.13. After disable Cornerstone all problems are solved for me, becaus i dont need cornerstone. It comes to me with the Theme.
Forum: Plugins
In reply to: [Jobs for WordPress] single-jobs.php didn’t work with today update 1.6.9Hi,
thank you. Now it seems to be functional. I need the jobs/single-jobs.php, because i have to insert the theme css classes in wrap tag.regards
DanielForum: Plugins
In reply to: [Jobs for WordPress] single-jobs.php didn’t work with today update 1.6.9Hi,
one of the developers from the X-Theme think:
“This original issue in the plugin is related to “template redirect” which I can see the plugin author has addressed in the latest update 1.6.9 as you can see in the changelog, it was mentioned Fixed template redirect issue which doesn’t seem to be. I recommend getting in contact with him regarding this main point, regardless my temporary solution that worked in version 1.6.7 that’s now not working in version 1.6.9 the main problem hasn’t been solved in the plugin till now.”So now i use your original single-jobs.php in x-child Theme. Now it shows the job details, but without header and Footer. The temporary solution, the developer from x-theme talked about is now in single-jobs.old.php.
regards
DanielForum: Plugins
In reply to: [Jobs for WordPress] single-jobs.php didn’t work with today update 1.6.9Oh,
i included support from theme.co here is the Forum stream:Regards
DanielForum: Plugins
In reply to: [Jobs for WordPress] single-jobs.php didn’t work with today update 1.6.9Hi,
yes this worked and as a part of a Tip in this Forum.
Single.php:
<?php x_get_view( x_get_stack(), 'wp', 'single' ); ?>
Thats it.
I think they call this file: wp-single.php in their Template:
$fullwidth = get_post_meta( get_the_ID(), '_x_post_layout', true ); ?> <?php get_header(); ?> <div class="x-main full" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php x_get_view( 'icon', 'content', get_post_format() ); ?> <?php x_get_view( 'global', '_comments-template' ); ?> <?php endwhile; ?> </div> <?php if ( $fullwidth != 'on' ) : ?> <?php get_sidebar(); ?> <?php endif; ?> <?php get_footer(); ?>
I tried a step back to the Last Version of your Plugin by delete it from WordPress an install the old version. But no success.
Now i tested this with original single-jobs.php: result is the jobs detail site without header & footer.
If you Need a login to the developer clone installation (wp.jehle-markt.de), please tell me how we could handle this.
Regards
DanielForum: Plugins
In reply to: [Jobs for WordPress] Custom job post template?Hi Vicetro,
Yes, shure.
I think you have to simply create this file in your active theme directory (jobs/single-jobs.php).
But after a theme update it could be lost and you have to create this again.
Regards
Forum: Plugins
In reply to: [Jobs for WordPress] Custom job post template?Solution with X-Template:
According to the plugin author reply mentioned here, they recommend doing the following:Use a child theme, please follow this guide.
Create this file in child theme directory (jobs/single-jobs.php).
Inside this file, please paste the following code snippet:<?php function add_single_job() { ?> <div class="wrap"> <?php if( function_exists('get_job_fields') ) get_job_fields(); ?> </div> <?php } add_action( 'x_before_the_content_begin', 'add_single_job', 10 );
Hope this will help you, too.
Regards