Forum Replies Created

Viewing 15 replies - 16 through 30 (of 49 total)
  • Thread Starter Anwer AR

    (@aranwer104)

    few variation products are working properly and some other products are not. i am also confused because if there’s a problem then other products should not work too.
    Yes this is custom theme and i override all woocommerce templates.
    i will see if i can find something in that files. maybe i have made any mistake in template files.
    Thank you very much Irro.

    Thread Starter Anwer AR

    (@aranwer104)

    Sorry for late response it was weekends here”.
    I have solved the problem. the js for variations was not loading.
    Thank you very much for your help. anyway i am facing another problem which is related to “add to cart” on archives pages.

    Glad to hear that the issue was solved.. 🙂 Don’t forget to mark the topic as solved.
    we are here in case of any other question.

    Sorry i forget to put the last option. if none of above code works modify that code like this

    ul li a {
    color: #ff6600!important;
    }

    i hope you will be able to put some custom css into your stylesheet. if you don’t know how to do it then go to theme directory. and locate style.css open up this file in your favourite text editor and add the above css in the last f that file.

    Hope it helps you. if not then i am here to assist you further more.

    Okay, i think you have complete access to your theme directory as you are running it on localhost.
    so add the following lines to your theme stylesheet.css file.

    #equal-well nav.main-menu ul li a  {
        color: #ff6600!important;
    }

    or

    nav.main-menu ul li a  {
        color: #ff6600!important;
    }

    or

    .main-menu ul li a  {
        color: #ff6600!important;
    }

    add the one of above css to your stylesheet.css file. if top code do not change the color of primary meny then use second and so on until 4th. hope this will work.
    also don’t forget to change the color code to one of your liking.
    like #ff6600 to #your custom color code

    Hi ccwalburn!
    anything can be changed. Does this theme have an admin panel for theme customization? if it has then check it, otherwise you have to modify the stylesheet of the theme.
    let me know if there is no option for menu font color customization in theme admin panel so we will help you editing the stylesheet of the theme.

    Thread Starter Anwer AR

    (@aranwer104)

    Oh, I think i should close the topic. btw the problem was creating by one of JavaScript plugin.

    Anwer AR

    (@aranwer104)

    Hello Again Profitpad!
    to change your footer background and text color,
    Navigate your theme files,
    Open style.css
    and at the bottom of you style.css add following lines.

    .footer {
    background : #23282d!important;
    color : #fff!important;
    }
    .footer a,.footer h1,.footer h2{
    color : #fff!important;
    }

    Hope the problem is solved?

    Anwer AR

    (@aranwer104)

    First of all i would like to know about the work? give me the complete detail of your work? like any presentation about the work? and for now i don’t need access on your site. i will modify the theme and later you have to upload that into your directory.
    what type of modification you want? i think you want to remove the header and footer from a specific page template? and also do you want to remove the header navigation menu from that page template?

    Anwer AR

    (@aranwer104)

    Yes why not,
    there are two versions of WordPress, self hosted blog and on WordPress.com.
    on self hosted blog you have a complete control over core files and everything. but on WordPress you cant access WordPress core php files, but you can access your theme files, if you want some modification in it. to do so Go to Appearance->Editor, you theme files are there.

    Anwer AR

    (@aranwer104)

    Sound like you are vew to WordPress.
    Wordpress is a very powerful CMS tool and you can create 200% more better Sites then Dreamweaver, Yes WordPress is on the way of perfection.every new version is better then old one.
    and you have to learn how it works, (its not very difficult) there are a lot of tutorials out there but to to start This is the right place

    Anwer AR

    (@aranwer104)

    Yor are Welcome.

    Anwer AR

    (@aranwer104)

    Hey Perry94. there might be some problem with permalink settings..
    Go to settings>permalink and choose the default radio box.. and save it.
    then see the blog if the problem is solved?

    Anwer AR

    (@aranwer104)

    Do you use static front page? or if your front page is dynamically displayed by loop then you have to modify the Loop.like following,

    if(have_posts()) : while(have_posts()) : the_post();?>
    
    <h2><?php the_title();?>
    <?php the_excerpt();?> //instead to use the_content();
    
    <?php
    endwhile;
    endif;
    ?>

    and you can control the excerpt length as your wish. to do so add the following line of codes to your functions.php

    function custom_excerpt_length( $length ) {
    	$length = 50; //or your desired value here.
            return $length;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    Anwer AR

    (@aranwer104)

    Hey Profitpad! if you want me to do that then i will try, yes i will do it for free, give me the complete detail?
    why do you want to modify the full width page template? and do you want only a blank template without header,footer & nav-menus etc?

Viewing 15 replies - 16 through 30 (of 49 total)