Softound Solutions
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [i-craft] Related Products SliderDo you need to list the related products by specific category ?
Forum: Themes and Templates
In reply to: Correct Style sheet will not loadDequeued the error stylesheet and enqueue the proper stylesheet.
Forum: Themes and Templates
In reply to: Increase width for post & pageHi,
Your template uses bootstrap, so you no need to modify any CSS,
Open your page template file and change the following class
class=”col-sm-8″
TO
class=”col-sm-12″
Forum: Themes and Templates
In reply to: [Customizr] Categories and Tags Not WorkingTry to disable all the plugins and switch to default theme, then try to add category.
Forum: Themes and Templates
In reply to: [Customizr] Categories and Tags Not WorkingAre you using any cache plugins ?, if so disable them and try to add category once again.
Forum: Themes and Templates
In reply to: a link css for a category title not changingHi,
Do you mean “THE VIRTUES, THE CHAT, THE MARK OF CAIN” are items inside category ?
You are welcome, set this topic as resolved.
Forum: Localhost Installs
In reply to: Can access site but not wp-adminYour .htaccess file should be like this
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /mywebsite/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /mywebsite/index.php [L] </IfModule> # END WordPress
just place code inside
<?php ?>
tags of functions.php filePut the code very end of your funtions.php file
/** BOF Add extra "Call to action" buttons Note: This code was tested in sydney.1.22 theme Put this code in your child theme functions.php file, try in your local system before upload to live server */ /** Adds extra fields in customizer */ function sydney_customize_register_custom($wp_customize) { for($i=2;$i<=5;$i++) { $wp_customize->add_setting( 'slider_button_url'.$i, array( 'default' => '#primary', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'slider_button_url'.$i, array( 'label' => __( 'URL for your call to action button '.$i, 'sydney' ), 'section' => 'sydney_slider', 'type' => 'text', 'priority' => 31 ) ); $wp_customize->add_setting( 'slider_button_text'.$i, array( 'default' => __('Click to begin','sydney'), 'sanitize_callback' => 'sydney_sanitize_text', ) ); $wp_customize->add_control( 'slider_button_text'.$i, array( 'label' => __( 'Text for your call to action button '.$i, 'sydney' ), 'section' => 'sydney_slider', 'type' => 'text', 'priority' => 32 ) ); } } add_action( 'customize_register', 'sydney_customize_register_custom' ); /*Overrides the parent theme function to add extra buttons in slider*/ function sydney_slider_template() { if ( (get_theme_mod('front_header_type','slider') == 'slider' && is_front_page()) || (get_theme_mod('site_header_type') == 'slider' && !is_front_page()) ) { //Get the slider options $speed = get_theme_mod('slider_speed', '4000'); $text_speed = get_theme_mod('textslider_speed', '4000'); $text_slide = get_theme_mod('textslider_slide', 0); if (!$text_slide) { $slide_toggle = true; } else { $slide_toggle = false; } //Slider text if ( !function_exists('pll_register_string') ) { $slider_title_1 = get_theme_mod('slider_title_1', 'Welcome to Sydney'); $slider_title_2 = get_theme_mod('slider_title_2', 'Ready to begin your journey?'); $slider_title_3 = get_theme_mod('slider_title_3'); $slider_title_4 = get_theme_mod('slider_title_4'); $slider_title_5 = get_theme_mod('slider_title_5'); $slider_subtitle_1 = get_theme_mod('slider_subtitle_1','Feel free to look around'); $slider_subtitle_2 = get_theme_mod('slider_subtitle_2', 'Click the button below'); $slider_subtitle_3 = get_theme_mod('slider_subtitle_3'); $slider_subtitle_4 = get_theme_mod('slider_subtitle_4'); $slider_subtitle_5 = get_theme_mod('slider_subtitle_5'); $slider_button = get_theme_mod('slider_button_text', 'Click to begin'); $slider_button_url = get_theme_mod('slider_button_url','#primary'); $slider_button2 = get_theme_mod('slider_button_text2', 'Click to begin'); $slider_button_url2 = get_theme_mod('slider_button_url2','#primary'); $slider_button3 = get_theme_mod('slider_button_text3', 'Click to begin'); $slider_button_url3 = get_theme_mod('slider_button_url3','#primary'); $slider_button4 = get_theme_mod('slider_button_text4', 'Click to begin'); $slider_button_url4 = get_theme_mod('slider_button_url4','#primary'); $slider_button5 = get_theme_mod('slider_button_text5', 'Click to begin'); $slider_button_url5 = get_theme_mod('slider_button_url5','#primary'); } else { $slider_title_1 = pll__(get_theme_mod('slider_title_1', 'Welcome to Sydney')); $slider_title_2 = pll__(get_theme_mod('slider_title_2', 'Ready to begin your journey?')); $slider_title_3 = pll__(get_theme_mod('slider_title_3')); $slider_title_4 = pll__(get_theme_mod('slider_title_4')); $slider_title_5 = pll__(get_theme_mod('slider_title_5')); $slider_subtitle_1 = pll__(get_theme_mod('slider_subtitle_1','Feel free to look around')); $slider_subtitle_2 = pll__(get_theme_mod('slider_subtitle_2', 'Click the button below')); $slider_subtitle_3 = pll__(get_theme_mod('slider_subtitle_3')); $slider_subtitle_4 = pll__(get_theme_mod('slider_subtitle_4')); $slider_subtitle_5 = pll__(get_theme_mod('slider_subtitle_5')); $slider_button = pll__(get_theme_mod('slider_button_text', 'Click to begin')); $slider_button_url = pll__(get_theme_mod('slider_button_url','#primary')); $slider_button2 = pll__(get_theme_mod('slider_button_text2', 'Click to begin')); $slider_button_url2 = pll__(get_theme_mod('slider_button_url2','#primary')); $slider_button3 = pll__(get_theme_mod('slider_button_text3', 'Click to begin')); $slider_button_url3 = pll__(get_theme_mod('slider_button_url3','#primary')); $slider_button4 = pll__(get_theme_mod('slider_button_text4', 'Click to begin')); $slider_button_url4 = pll__(get_theme_mod('slider_button_url4','#primary')); $slider_button5 = pll__(get_theme_mod('slider_button_text5', 'Click to begin')); $slider_button_url5 = pll__(get_theme_mod('slider_button_url5','#primary')); } ?> <div id="slideshow" class="header-slider" data-speed="<?php echo esc_attr($speed); ?>"> <div class="slides-container"> <?php if ( get_theme_mod('slider_image_1', get_template_directory_uri() . '/images/1.png') ) { echo '<div class="slide-item" style="background-image:url(' . esc_url(get_theme_mod('slider_image_1', get_template_directory_uri() . '/images/1.jpg')) . ');"></div>'; } if ( get_theme_mod('slider_image_2', get_template_directory_uri() . '/images/2.jpg') ) { echo '<div class="slide-item" style="background-image:url(' . esc_url(get_theme_mod('slider_image_2', get_template_directory_uri() . '/images/2.jpg')) . ');"></div>'; } if ( get_theme_mod('slider_image_3') ) { echo '<div class="slide-item" style="background-image:url(' . esc_url(get_theme_mod('slider_image_3')) . ');"></div>'; } if ( get_theme_mod('slider_image_4') ) { echo '<div class="slide-item" style="background-image:url(' . esc_url(get_theme_mod('slider_image_4')) . ');"></div>'; } if ( get_theme_mod('slider_image_5') ) { echo '<div class="slide-item" style="background-image:url(' . esc_url(get_theme_mod('slider_image_5')) . ');"></div>'; } ?> </div> <div class="text-slider-section"> <div class="text-slider" data-speed="<?php echo esc_attr($text_speed); ?>" data-slideshow="<?php echo esc_attr($slide_toggle); ?>"> <ul class="slide-text slides"> <?php if ( get_theme_mod('slider_image_1', get_template_directory_uri() . '/images/1.png') ) : ?> <li> <div class="contain"> <h2 class="maintitle"><?php echo esc_html($slider_title_1); ?></h2> <p class="subtitle"><?php echo esc_html($slider_subtitle_1); ?></p> </div> <?php if ($slider_button) : ?> <a href="<?php echo esc_url($slider_button_url); ?>" class="roll-button button-slider"><?php echo esc_html($slider_button); ?></a> <?php endif; ?> </li> <?php endif; ?> <?php if ( get_theme_mod('slider_image_2', get_template_directory_uri() . '/images/2.jpg') ) : ?> <li> <div class="contain"> <h2 class="maintitle"><?php echo esc_html($slider_title_2); ?></h2> <p class="subtitle"><?php echo esc_html($slider_subtitle_2); ?></p> </div> <?php if ($slider_button2) : ?> <a href="<?php echo esc_url($slider_button_url2); ?>" class="roll-button button-slider"><?php echo esc_html($slider_button2); ?></a> <?php endif; ?> </li> <?php endif; ?> <?php if ( get_theme_mod('slider_image_3') ) : ?> <li> <div class="contain"> <h2 class="maintitle"><?php echo esc_html($slider_title_3); ?></h2> <p class="subtitle"><?php echo esc_html($slider_subtitle_3); ?></p> </div> <?php if ($slider_button3) : ?> <a href="<?php echo esc_url($slider_button_url3); ?>" class="roll-button button-slider"><?php echo esc_html($slider_button3); ?></a> <?php endif; ?> </li> <?php endif; ?> <?php if ( get_theme_mod('slider_image_4') ) : ?> <li> <div class="contain"> <h2 class="maintitle"><?php echo esc_html($slider_title_4); ?></h2> <p class="subtitle"><?php echo esc_html($slider_subtitle_4); ?></p> </div> <?php if ($slider_button4) : ?> <a href="<?php echo esc_url($slider_button_url4); ?>" class="roll-button button-slider"><?php echo esc_html($slider_button4); ?></a> <?php endif; ?> </li> <?php endif; ?> <?php if ( get_theme_mod('slider_image_5') ) : ?> <li> <div class="contain"> <h2 class="maintitle"><?php echo esc_html($slider_title_5); ?></h2> <p class="subtitle"><?php echo esc_html($slider_subtitle_5); ?></p> </div> <?php if ($slider_button5) : ?> <a href="<?php echo esc_url($slider_button_url5); ?>" class="roll-button button-slider"><?php echo esc_html($slider_button5); ?></a> <?php endif; ?> </li> <?php endif; ?> </ul> </div> </div> </div> <?php } } //EOF Add extra "Call to action" buttons
ok, i will send you code
How many CTAs will you add ?
Forum: Themes and Templates
In reply to: a link css for a category title not changingTry this one, it should work
#mainNav .current-menu-item a { color: #fff; }
Forum: Themes and Templates
In reply to: [Amadeus] SITE DOWNHi,
I think you have added extra “.” on line 109, so that it says error like that. just compare both original file and modified file, you will see what the error is.