Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • Thread Starter kdickins

    (@kdickins)

    What do you mean by “see it online”?

    Thread Starter kdickins

    (@kdickins)

    @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.

    • This reply was modified 7 years ago by kdickins.
    • This reply was modified 7 years ago by kdickins.
    Thread Starter kdickins

    (@kdickins)

    I’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?

    Thread Starter kdickins

    (@kdickins)

    Thank you.

    Thread Starter kdickins

    (@kdickins)

    So 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?

    Thread Starter kdickins

    (@kdickins)

    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!

    Thread Starter kdickins

    (@kdickins)

    Thank you for your help.

    Thread Starter kdickins

    (@kdickins)

    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.

    Thread Starter kdickins

    (@kdickins)

    @binarywc

    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.

    Thread Starter kdickins

    (@kdickins)

    Hi @axlethemes

    Thank you for your help!

    • This reply was modified 7 years, 2 months ago by kdickins.
    Thread Starter kdickins

    (@kdickins)

    @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.

    Thread Starter kdickins

    (@kdickins)

    Thank you very much for this; one final question regarding this. Is it possible to move the site name into the actual navigation?

    Thread Starter kdickins

    (@kdickins)

    @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.

    Thread Starter kdickins

    (@kdickins)

    Sorry, 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 7 years, 2 months ago by kdickins.
    Thread Starter kdickins

    (@kdickins)

Viewing 15 replies - 1 through 15 (of 15 total)