danjbh
Forum Replies Created
-
Forum: Plugins
In reply to: [Cooked - Recipe Management] Display issuesThere was a conflict internally between my theme and the plugin.
I am also having this same issues – brand new install of this plugin. When you create a form, publish and then go back to edit its does not work.
After inspecting the code it is riddled with error and console errors.
Please can you take a look – urgent request.
Thanks for the reply, let me look into this.
- This reply was modified 7 years, 5 months ago by danjbh.
Hi There,
I think you have misunderstood/not read my query. Nothing is selected and by default the plugin overrides a custom user to go straight to wp-admin/profile.php – when trying to override this via the functions file the function is ignored. I know 100% it is the plugin because when we disable it the function I create work and points to the page I point to after login for this specific role.
Hey has anyone taken a look at my question?
Forum: Plugins
In reply to: [WP Broadbean] job-industry/category-name change templateThis has been resolves. Thanks again for all your help Mark – I am starting to feel like I live and breath this plugin!
Thanks again!
Forum: Plugins
In reply to: [WP Broadbean] Change the url of /’job-industry/’Hi Mark,
So I installed the plugin, it did exactly what I needed it to do, can you advise me though how to stop any links from including the /job-industries/ in the url so for example when I print out the industries from this custom post type it includes this as part of the url?
**UPATE**
Ignore this it had cached. It works perfectly.
- This reply was modified 7 years, 6 months ago by danjbh.
Forum: Plugins
In reply to: [WP Broadbean] Change the url of /’job-industry/’Is there a way to simply have the url like:
domain.com/accounting/
So completely remove the /job-industries/ part of the url?
Forum: Plugins
In reply to: [WP Broadbean] job-industry/category-name change templateMark, thanks for the reply I appreciate your time on this ??
I figured out that the issue was with a conflicting script from another plugin so I sincerely apologise – if you could shed some light on my other question that would be great ?? I just need a simple way to change the slug of ‘job-industries’ to just the category name with -jobs appends on to the slug…
Forum: Plugins
In reply to: [WP Broadbean] Change the url of /’job-industry/’When you say I should be able to do it? Is there a simple method of changing the url of ‘job-industries’ to ‘jobs’? Im not sure what I am filtering you see and I don’t want to mess around with the plugins code.
OR
Can you drop ‘job-industries’ and append the industries slug with ‘-jobs’ at the end?
- This reply was modified 7 years, 6 months ago by danjbh.
Forum: Plugins
In reply to: [WP Broadbean] job-industry/category-name change templateAre you able to help me at all Mark?
Forum: Plugins
In reply to: [WP Broadbean] job-industry/category-name change templateEven if I create taxonomy.php is still falls back to archive or index.php – I know my hierarchy works because I am using it elsewhere on the theme.
Forum: Plugins
In reply to: [WP Broadbean] job-industry/category-name change templateHi Mark,
I have been using that as a resource, but no matter what I do the file just routes straight to archive.php. I am aware the taxonomy is named that but you have kind of just defected my question a little.
Can you just advise me on how to avoid wordpress using archive.php do I need to call the file something like:
taxonomy-wpbb_job_industry.php
I have literally tried everything any hep would be great right abaout now.
- This reply was modified 7 years, 6 months ago by danjbh.
Forum: Plugins
In reply to: [WP Broadbean] job-industry/category-name change templateI would have thought the
archive-wpbb_job.php
file I create would override the ‘archive.php’ for anything broadbean related? Is this not the case?Forum: Plugins
In reply to: [WP Broadbean] Show ‘industries/Categories’ listOk so I ended up doing it like this:
<?php $categories = get_categories( array( 'taxonomy' => 'wpbb_job_industry', 'orderby' => 'name', 'parent' => 0 ) ); foreach ( $categories as $category ) { printf( '<a href="%1$s">%2$s</a><br />', esc_url( get_category_link( $category->term_id ) ), esc_html( $category->name ) ); } ?>
This works great, is there a specific ‘category’ page file name we should be using to show only jobs from wp-broadbean like the archive page you have available?