Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 10 years, 6 months ago Mirela
    Participant
    in reply to: Specular/SpecularChild – Menu changes not staying

    Hello,

    Please refer to this topic regarding this.
    Let us know if you need further help.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: When Contact form is sent weird design

    Hello,

    Please edit the code to this:

    div.wpcf7-mail-sent-ok {
        display:none !important;
    }
    div.wpcf7-validation-errors {
         display:none !important;
    }

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: menu navigation

    Hello,

    Did you edit the file includes/view/menu-small.php, as suggested in the above reply? That is responsible for the responsive mode.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: woocommerce products row

    Hello,

    Sorry but that is not possible by plugin options, and editing it’s core files is a customization not included in this support.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Google Fonts – Codeless Slider

    Hello,

    Tower theme does not have any issue with Google fonts. Please update theme to it’s latest version (i see you have vs 1.2.7, while the latest is vs 1.3.2) As it has many important changes. Also update Visual Composer too (read on how to update plugin here). If the issue persists, please send us your wp credentials in a private reply. So we can give it a closer look.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: import data demo

    Hello,

    -Top navigation is the same style as the demo. What you need it to add/remove more menu items. If you are refering to the basket, for that you have to install WooCommerce plugin (in case you will use e-commerce). I already added the top bar widgets. You have re-created all widgets used in the demo. Just go to Appearance > Widgets, scroll down to “Unused widgets”. Pic the ones you want to use or create your own.

    -This is the page header you want to display. You can find it at the page’s General Settings > Page Header Options > Active Page Header, set it ON. You can chose between two styles of page header. The simple with breadcrumbs, or centered with/without subtitle (screenshot). I edited the ‘About Us’ page.

    -To align the “You are Welcome”, i added this code into the page’s custom css box:

    .wpb_text_column.wpb_content_element .shortcode_h5 {
        padding-top: 45px;
        float: left;
        margin-left: -160px;
    }

    -To use the contact form, you need to install ‘Contact Form 7’ plugin. I already set it up for you.
    Note: Most of these configurations are not included in support. As you can find all them and more in theme’s documentation. Please read it here.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Dummy data import doesn’t import images, sliders and top menu

    Hello,

    What is the issue with Revolution slider? You had chosen a transparent header with white background, that is why it was displaying cut off. But i have already changed that yesterday. The slider in home page is not cut off (screenshot).
    I do see all items in portfolio page. You have selected only one category to display. That is why it is showing only three items (of that specific category). I have added all other categories to it. Please check portfolio page. To add/remove categories go to page’s Portfolio Options > Portfolio Categories (screenshot).

    Note: Please be patient as we are doing our best to answer all our customers questions asap. Everyone of you is important to us and needs an urgent reply. Our working hours are from Monday to Friday, 9AM to 5PM (UTC +1:00). Please consider the timezone differences too.
    Read more on our Support Policy here.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Codeless Slider disappears on mobile and tablet platform

    Hello,

    Please send us your site’s url, so we can give it a closer look.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: FAQ problem

    Hello,

    Sorry but this is a wordpress feature, not depended on theme configurations. Just do not switch back and forth from text to visual as it removes automatically the html tags. Write and format your FAQ questions in text editor and save.
    You will not have any problems like this.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: BBpress User Profile Pages

    Hello,

    Sorry for the late reply.
    The Bbpress forum plugin is not included in theme package, so we do not offer support on it. However, i can suggest you add these functions into your function.php file:

    // Filter wp_nav_menu() to profile link
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_pro_link' );
    function my_nav_menu_pro_link($menu) {
        if (!is_user_logged_in())
            return $menu;
        else
            $current_user = wp_get_current_user();
            $user=$current_user->user_login ;
            $profilelink = '<li><a href="'.home_url().'/forums/user/' . $user . '/">Profile</a></li>';
            $menu = $menu . $profilelink;
            return $menu;
     
    }
    // Filter wp_nav_menu() to add profile link
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
    function my_nav_menu_profile_link($menu) {
        if (!is_user_logged_in())
            return $menu;
        else
            $current_user = wp_get_current_user();
            $user=$current_user->user_nicename ;
            $profilelink = '<li><a href="'.home_url().'/forums/user/' . $user . '/edit">Edit Profile</a></li>';
            $menu = $menu . $profilelink;
            return $menu;
      
    }

    Source.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Issue with Portfolio Section Categories /Portfolio categories on single page

    Hello,

    1-The portfolio categories will show the portfolio items of that category for only the items already displayed in the present page. Not the items from other pages. To avoid this, you should remove the pagination. Read more in this topic.

    2-Please refer to the above suggested topic to display more than 9 items per 3 columns. In you case, you should edit only this part:

    case '3':
      $p_per_page = 9;
      break;

    To this:

    case '3':
      $p_per_page = 999;
      break;

    Best regards!

    • This reply was modified 10 years, 6 months ago by Mirela.
    10 years, 6 months ago Mirela
    Participant
    in reply to: import data demo

    Hello,

    I don’t see much difference from the demo. I edited the header, removed the transparency. Now the slider is not hidden under header. Also added the widgets in footer. I see the portfolio items are displaying well too. What do you need to change?
    Import demo slider from the ‘sliders’ folder included into the main folder you downloaded the theme from Theme forest.
    To add the shop page, you need to first install the WooCommerce plugin.
    Let us know if you need further help.

    PS: You have written in Specular theme forum. Please keep in mind to write future posts, into your theme’s specific forum. So we do not look throw the wrong theme and other users looking for solutions in the forum, are not mistaken too.
    I already redirected this topic to the right forum.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Sidebar width

    Hello,

    You can add this code into your custom css box:

    #widgetarea-sidebar {
        width: 20% !important;
    }

    If you are not satisfied with the result, send us a link where you have two sidebars, so that we can give a more precise advice.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Disable CSS Animation on Mobile

    Hello,

    Yes, it is possible. But you will have to edit a bit the css code. Let us know what elements you want to alter. Also send us the page’s where you have those elements.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Adjust Media Query for Nav Menu Collapse

    Hello,

    Please add this code into your custom css box:

    @media (min-width: 979px) and (max-width: 1150px){
    .mobile_small_menu { display: block;}
    #navigation { display: none;}
    }

    Best regards!

Viewing 15 posts - 10,471 through 10,485 (of 12,542 total)
← 1 2 3 … 698 699 700 … 835 836 837 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password