Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter kaireiou

    (@kaireiou)

    Hi Sir, I couldn’t do this with the help given. Have seen the css, went through the entire list of CSS to find any border-colour, and also checked out all the links you have provided, but, I cant seem to find the answer to solve this issue to make all my option boxes the same color in product. Perhaps, u can let me know where on the PHP does this belong to? I do have this over here and also the other text field boxes also have that color layout. However, I can’t find it on my PTP files or so? Maybe u can guide me so that I can find those files, and it will be easy for me to just edit the codes a little.

    https://wordpress-736649-2471918.cloudwaysapps.com/wp-content/uploads/2022/03/Screenshot-2022-03-02-at-8.17.13-AM.png

    • This reply was modified 3 years ago by kaireiou.
    Thread Starter kaireiou

    (@kaireiou)

    Hi there, I think that’s not what meant though. I just wanted all product options to look like the bottom two text field color, pink borders and brownish fonts to make all the products option the same color.

    Forum: Fixing WordPress
    In reply to: Code on my Footer
    Thread Starter kaireiou

    (@kaireiou)

    @threadi Oh my, I have found it through your tips!! Once again, really appreciate it, u have helped me for several issues on my wordpress. The website was actually passed on to me, however there was just so many bugs and errors done by the developer of my website. Really thank you!!

    • This reply was modified 3 years ago by kaireiou.
    Forum: Fixing WordPress
    In reply to: Code on my Footer
    Thread Starter kaireiou

    (@kaireiou)

    Is it this?

    <?php 
    /**
     * @package 	WordPress
     * @subpackage 	Flower Shop
     * @version		1.0.5
     * 
     * Footer Template
     * Created by CMSMasters
     * 
     */
    
    $cmsmasters_option = flower_shop_get_global_options();
    ?>
    <div class="footer_inner">
    	<div class="footer_in_inner">
    		<?php 
    		if (
    			$cmsmasters_option['flower-shop' . '_footer_type'] == 'default' && 
    			$cmsmasters_option['flower-shop' . '_footer_logo']
    		) {
    			flower_shop_footer_logo($cmsmasters_option);
    		}
    		
    		
    		if (
    			(
    				$cmsmasters_option['flower-shop' . '_footer_type'] == 'default' && 
    				$cmsmasters_option['flower-shop' . '_footer_html'] !== ''
    			) || (
    				$cmsmasters_option['flower-shop' . '_footer_type'] == 'small' && 
    				$cmsmasters_option['flower-shop' . '_footer_additional_content'] == 'text' && 
    				$cmsmasters_option['flower-shop' . '_footer_html'] !== ''
    			)
    		) {
    			echo '<div class="footer_custom_html_wrap">' . 
    				'<div class="footer_custom_html">' . 
    					do_shortcode(wp_kses(stripslashes($cmsmasters_option['flower-shop' . '_footer_html']), 'post')) . 
    				'</div>' . 
    			'</div>';
    		}
    		
    		
    		if (
    			has_nav_menu('footer') && 
    			(
    				(
    					$cmsmasters_option['flower-shop' . '_footer_type'] == 'default' && 
    					$cmsmasters_option['flower-shop' . '_footer_nav']
    				) || (
    					$cmsmasters_option['flower-shop' . '_footer_type'] == 'small' && 
    					$cmsmasters_option['flower-shop' . '_footer_additional_content'] == 'nav'
    				)
    			)
    		) {
    			echo '<div class="footer_nav_wrap">' . 
    				'<nav>';
    				
    				
    				wp_nav_menu(array( 
    					'theme_location' => 'footer', 
    					'menu_id' => 'footer_nav', 
    					'menu_class' => 'footer_nav' 
    				));
    				
    				
    				echo '</nav>' . 
    			'</div>';
    		}
    		
    		
    		if (
    			isset($cmsmasters_option['flower-shop' . '_social_icons']) && 
    			(
    				(
    					$cmsmasters_option['flower-shop' . '_footer_type'] == 'default' && 
    					$cmsmasters_option['flower-shop' . '_footer_social']
    				) || (
    					$cmsmasters_option['flower-shop' . '_footer_type'] == 'small' && 
    					$cmsmasters_option['flower-shop' . '_footer_additional_content'] == 'social'
    				)
    			)
    		) {
    			flower_shop_social_icons();
    		}
    		?>
    		<span class="footer_copyright copyright">
    			<?php 
    			if (function_exists('the_privacy_policy_link')) {
    				the_privacy_policy_link('', ' / ');
    			}
    			
    			echo esc_html(stripslashes($cmsmasters_option['flower-shop' . '_footer_copyright']));
    			?>
    		</span>
    	</div>
    </div>
    Forum: Fixing WordPress
    In reply to: Code on my Footer
    Thread Starter kaireiou

    (@kaireiou)

    Forum: Fixing WordPress
    In reply to: Code on my Footer
    Thread Starter kaireiou

    (@kaireiou)

    Hi Smit,

    Im so sorry, may I know how to get there? There appears to have a lot of footer.php file.

    Thread Starter kaireiou

    (@kaireiou)

    Oh!! It worked like magic! Thank you sooo much!

    • This reply was modified 3 years, 1 month ago by kaireiou.
    Forum: Fixing WordPress
    In reply to: Permalink?
    Thread Starter kaireiou

    (@kaireiou)

    Oh my gosh. thank you so much for identifying it for me and for the link to test this out. I’m gonna read up on it right now. Really appreciate your help!! ?? Cheers!

    Forum: Fixing WordPress
    In reply to: Permalink?
    Thread Starter kaireiou

    (@kaireiou)

    I’m not sure if it is a permalink? But the wording link of “home:shop” just below the word SHOP. I couldn’t find a way to hide it or remove it. So sorry if I sounded really noob about this as I’m pretty much new to WordPress as well.

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