kdickins
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Illdy] Contact Us Section; Add Name & TitleWhat do you mean by “see it online”?
Forum: Themes and Templates
In reply to: [Illdy] Contact Us Section; Add Name & Title@nodarik
Unfortunately, I can’t provide the URL to the page because it is in development phase… can I provide the code that I use to create the fields and an image of what it looks like on the front end & customizer?I understand that it might not be supported, but I figured I’d ask anyway, since there isn’t a place to say what you can and cannot help with.
Forum: Themes and Templates
In reply to: [Illdy] Contact Us Section; Add Name & TitleI’ve managed to add both a name and title to the customizer in the contact us section, but it shows both under the general and details tab. Is there a way to specify which tab it belongs to?
Forum: Themes and Templates
In reply to: [Business Cast] Social MenuThank you.
Forum: Themes and Templates
In reply to: [Business Cast] Social MenuSo just to clarify, all they have do is leave the link text [link label] blank, and just insert the URL for the icons to be assigned automatically by CSS?
Forum: Developing with WordPress
In reply to: Can you conditionally use post_thumbnail()?Hi all!
I actually solved my own problem (yay me!).
I had installed a plugin called FakerPress which allowed me to insert random content. It had created broken images and inserted them into the pages, which is why I was having such an issue but not showing a broken image (…and I didn’t even look at the edit page screen themselves until just now. smh.)
Sorry for the confusion!
Forum: Networking WordPress
In reply to: Organization of Sites (CPT, Taxonomies?)Thank you for your help.
Forum: Networking WordPress
In reply to: Organization of Sites (CPT, Taxonomies?)The best way to explain it was to have a multi-site underneath a multi-site, but I was informed that was not possible with WordPress.
Forum: Networking WordPress
In reply to: Organization of Sites (CPT, Taxonomies?)Hello,
It is already a multisite. I’m looking to further expand on this or give my system administrator more information in regards to creating this scenario.
I’m currently reading that page.
Forum: Themes and Templates
In reply to: [Business Cast] New Copyright FooterForum: Themes and Templates
In reply to: [Business Cast] Moving masthead header.@axlethemes That’s what I thought, but I figured I would ask anyway. Thank you so so so much for helping me as much as you have! I really appreciate it.
Forum: Themes and Templates
In reply to: [Business Cast] Moving masthead header.Thank you very much for this; one final question regarding this. Is it possible to move the site name into the actual navigation?
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page Templates@axlethemes
Having added that code mentioned above to the theme itself (it doesn’t work when I apply it in the child theme for whatever reason), it doesn’t work.However, when I do this to the slider.php page:
if ( ! function_exists( 'business_cast_check_slider_status' ) ) : /** * Check status of slider. * * @since 1.0.0 * * @param bool $input Slider status. */ function business_cast_check_slider_status( $input ) { $input = false; // Slider status. $featured_slider_status = business_cast_get_option( 'featured_slider_status' ); switch ( $featured_slider_status ) { case 'home-page': if ( ! is_page_template( 'templates/front.php' ) ) { $input = true; } break; case 'club-page': if ( is_page_template( 'templates/club.php' ) ) { $input = true; } break; case 'conference-page': if ( ! is_page_template( 'templates/conference.php' ) ) { $input = true; } break; case 'edu-page': if ( ! is_page_template( 'templates/edu.php' ) ) { $input = true; } break; case 'organization-page': if ( ! is_page_template( 'templates/org.php' ) ) { $input = true; } break; case 'program-page': if ( ! is_page_template( 'templates/program.php' ) ) { $input = true; } break; case 'research-page': if ( ! is_page_template( 'templates/research.php' ) ) { $input = true; } break; case 'disabled': $input = false; break; default: break; } return $input; } endif;
The helpers.php page remains the same with:
if ( ! function_exists( 'business_cast_get_featured_slider_content_options' ) ) : /** * Returns the featured slider content options. * * @since 1.0.0 * * @return array Options array. */ function business_cast_get_featured_slider_content_options() { $choices = array( 'home-page' => esc_html__( 'Front Page Template', 'business-cast' ), 'club-page' => esc_html__( 'Club Page Template', 'business-cast-child' ), 'conference-page' => esc_html__( 'Conference Page Template', 'business-cast-child' ), 'education-page' => esc_html__( 'Education Page Template', 'business-cast-child' ), 'organization-page' => esc_html__( 'Organization Page Template', 'business-cast-child' ), 'program-page' => esc_html__( 'Program Page Template', 'business-cast-child' ), 'research-page' => esc_html__( 'Research Page Template', 'business-cast-child' ), 'disabled' => esc_html__( 'Disabled', 'business-cast' ), ); return $choices; } endif;
I get the slider to appear on all pages of the template that I have created, which creates another problem – the slider then appears on ALL pages, whether it’s been called or not.
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page TemplatesSorry, I had the front page assigned – I was still working, my apologies.
I have created a user, and it has sent you an email. Please let me know if you need anything else in the meantime.Unfortunately, I was told that it was not the best idea to give you a user in order to figure this problem out. Is there another way that I can give you the information you need?
- This reply was modified 6 years ago by kdickins.
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page Templates