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

  • 8 years, 5 months ago Mirela
    Participant
    in reply to: Visual Composer missing elements

    Hello,

    @HDGasmin, Please look out for this line: //vc_remove_element("vc_tta_accordion");
    in file \includes\core\codeless_elements.php. Edit it to this: vc_remove_element("vc_tta_accordion");
    Then check out the Visual composer, deprecated elements section again.
    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Portfolio- get rid of slug below item title

    Hello,

    Yes, you can remove the slug, link with a bit of custom css. Can i please see a link where you have this?
    The color of the overlay can be changed in General Options > Styling Options > Portfolio Styling > Portfolio Overlay BG Color.

    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Menu On Mobile phone

    Hello,

    That’s great. Let us know if you need further help.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Extra navigation Button

    Hello,

    In file functions-tower.php i edited this block:

     <a class="extra_navigation_button" href="#" >
        <i class="icon-bars"></i>
     </a>  

    To this:
    <a class="extra_navigation_button" >
    <i class="icon-bars"></i>
    </a>

    And in file header.php i edited this block:

    <div class="extra_navigation <?php echo esc_attr($cl_redata['extra_navigation_position']) ?>">
            <a href="#" class="close"></a>
            <div class="content"><?php dynamic_sidebar( "Extra Side Navigation" ); ?>
      </div>
    </div>

    To this:

    <div class="extra_navigation <?php echo esc_attr($cl_redata['extra_navigation_position']) ?>">
            <a class="close"></a>
       <div class="content"><?php dynamic_sidebar( "Extra Side Navigation" ); ?></div>
    </div>

    Then i added this css into your Custom Css box in General Options:

    a.extra_navigation_button {
        cursor: pointer;
    }
    .extra_navigation a.close {
        cursor: pointer;
    }

    Please clear cache and refresh page. I tested it and it should behave like you want now. Let us know.

    Bet regards!

    • This reply was modified 8 years, 5 months ago by Mirela.
    8 years, 5 months ago Mirela
    Participant
    in reply to: Buttons

    Hello,

    I understand. But in the ‘Widgetized sidebar’ element’s options you need to select one of the widgets sections(screenshot).
    But this element has been removed in the last theme update. So to add it back, please go to file: \includes\core\codeless_elements.php
    Find this line: vc_remove_element("vc_widget_sidebar");
    Edit to this: //vc_remove_element("vc_widget_sidebar");

    Then proceed in adding the element like before. Let us know.

    Best regards!

    • This reply was modified 8 years, 5 months ago by Mirela.
    8 years, 5 months ago Mirela
    Participant
    in reply to: Top Item on Left Nav changes

    Hello,

    I tried to login but the password seems not valid. See screenshot: https://postimg.org/image/486wjq051/
    Ca you please check?

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Codeless Slider Background Attachment : Fixed not working for all slides

    Hello,

    Please try changing the missing slide’s background attachment to “inherit“. Or add this code into your custom css box in General Options:

    .swiper-slide.swiper-slide-visible.swiper-slide-active {
        background-attachment: inherit !important;
    }

    This should be the result: https://postimg.org/image/4xpovz5sl/
    Let me know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Favicon Issue

    Hello,

    Can you please send some valid wp credentials in a private reply? So we can give it a look.

    Thank you!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Animation for entering the browser viewport

    Hello,

    I suppose you are referring to the animated counters in the demo link. That is the default behavior of the animated counters. But keep in mind that the counters need to be below he page preview when you first load it, in order for them to start animating when you scroll to that section.
    It is the same theme used in the default demo and your site so there should not be any difference. If you still have questions regarding this, just send us your site’s link when you are ready and we’ll check it again.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Fontcolour in header on special pages

    Hello,

    There is an authentication pop-up. Can you please send the login credentials of it in a private reply?

    Thanks!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Extra navigation Button

    Hello,

    1-I opened the extra side menu while at the end of a page and it did not resend me back to top. See screenshot of it: https://postimg.org/image/7v7yhmj45/
    Did you manage to fix it?

    2-Add this code into your Custom Css Box (located in Tower > General Options):

    #offcanvas-toggler>i {
        color: #a2411b !important;
    }

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Menu Custimizations

    Hello,

    1-Please go to General Options > Header Options > Menu Options > Menu Item Typography, select ‘Center‘ in ‘Text Align‘ option.

    2-Can you please be more clear? I don’t understand what you need to change.

    3-That’s strange. Please update theme first to it’s latest version 2.3 and let us know if the situation persists.

    4-You can, but you will need to edit one of the theme files. Please go to file includes/register/register_shortcodes.php and find this block: https://pastebin.com/yDS7nPHT
    Replace with this: https://pastebin.com/NF8EnkuD
    Now go to your Appearance > Widgets and add the hours shortcode. The result shortcode will be something like this:
    [contact_information light="yes" tel="+114 554 888" addr="20 St Street, New York" email="[email protected]" hours="20541"]

    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Problems with team content

    Hello,

    1-Please go to file vc_templates/staff.php and find this line:
    $output .= '<p>'.codeless_text_limit(get_the_excerpt(), 25).'</p>';

    The value 25 is the number of words that will display. Increase it to your wish. Example: $output .= '<p>'.codeless_text_limit(get_the_excerpt(), 255).'</p>';
    Save changes.

    2-Can i please see a link of the page you have the team? So i can understand better the situation.
    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Button in Rev Slider

    Hello,

    That’s a solution too. Let us know if you need further help.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Buttons

    Hello,

    The widget used in section “Upcomming Events” is from a third party plugin? As previously mentioned, it is a common situation for widgets not to be in the same place if you are updating from an old version.

    NOTE: From version 1.4.4 to 2.6.1, not only theme has changed a lot, but the wordpress version in which theme has been build, has had some major changes too! One of them is the widget’s structure. This does not happen every time.

    The default theme widgets are still there, in the Appearance > Widgets, in the the “Inactive widgets” area. But third party widgets can react differently.

    All you have to do, is add the calendar widget again and make sure to always update theme, wordpress and plugins whenever there is a new update available.

    Best regards!

Viewing 15 posts - 4,321 through 4,335 (of 12,542 total)
← 1 2 3 … 288 289 290 … 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