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

  • 6 years, 5 months ago Mirela
    Participant
    in reply to: Missing Revolution Slider

    Hello,

    Sorry, but I am really not understanding what you mean. In the screen recording, I send you, it’s shown one of the default sliders that can be imported in Revolution slider. The ‘slide 5’ which I imported by myself to your site.

    And to select another slider to show on the page (as it’s shown in the screenshot), you only need to open the element of Revolution slider on the page (Visual Composer backend), open it and chose another of the available sliders from the list.

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Error of Portfolio

    Hello,

    1-.htaccess is a file in the WordPress root folder. rename it to whatever, even just .htaccess1 See screenshot: https://ibb.co/6nXxpQy
    It will be regenerated the moment you reset permalinks.

    2-To reset permalinks, just go to Settings > Permalinks. Select the default version of permalinks, save. Then select back the “Post Name” form and save again.
    Screenshot: https://ibb.co/V25V3wc

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Site breakdown after updating theme

    Hello,

    The fonts are not being loaded due to a cross-origin issue: https://ibb.co/zbDjwn7
    The staging site is calling the fonts from the original site and the latest is not allowing it. (screenshot). Did you import the content from the original site? You may need to check that all links in the database have been updated correctly to the new site’s link (the staging site).

    -The search issue, this too is most properly due to the database not being updated correctly from the import of the original site’s content (links).

    I suggest you continue to update the original site and work with it.
    -The steps I took where:
    1-Deactivate all plugins;
    2-Update theme;
    3-Update included plugins (Kirki and Codeless Builder);
    4-Activate included plugins first;
    5-Proceed in activating other plugins one at a time;

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Customize password protection

    Hello,

    The text is hardcoded in theme files. So to change it go to file: folie\includes\codeless_functions_blog.php
    Find the function codeless_password_form():

    function codeless_password_form( $post ){
        $post = get_post( $post );
        $label = 'pwbox-' . ( empty($post->ID) ? rand() : $post->ID );
        $output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="post-password-form" method="post">
        <p>' . esc_html__( 'This content is password protected. To view it please enter your password below:', 'folie' ) . '</p>
        <p><label for="' . $label . '">' . esc_html__( 'Password:', 'folie' ) . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" class="'.codeless_button_classes().'" value="' . esc_attr_x( 'Enter', 'post password form', 'folie' ) . '" /></p></form>
        ';
      
        return $output;
    }

    Edit to this:

    function codeless_password_form( $post ){
        $post = get_post( $post );
        $label = 'pwbox-' . ( empty($post->ID) ? rand() : $post->ID );
        $output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="post-password-form" method="post">
        <h2>' . esc_html__( 'Dieser Bereich ist Passwortgeschutzt.', 'folie' ) . '</h2>
        <span>' . esc_html__( 'Sorry, Rechte und so.', 'folie' ) . '</span><span style="color: #03A9F4;">' . esc_html__( 'Gib bitte das Passwort ein.', 'folie' ) . '</span>
        <p><label for="' . $label . '"><input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" class="'.codeless_button_classes().'" value="' . esc_attr_x( 'Enter', 'post password form', 'folie' ) . '" /></p></form>
        ';
      
        return $output;
    }

    Then add this custom css:

    .cl-btn:not(.btn-priority_secondary):hover {
        background-color: rgb(255, 255, 255) !important;
        color: #504c4c !important;
        border-color: rgba(0, 0, 0, 0.48) !important;
    }
    .cl-btn:not(.btn-priority_secondary) {
        background-color: rgb(255, 255, 255) !important;
        color: #504c4c !important;
        border-color: rgba(0, 0, 0, 0.48) !important;
    }
    h2:not(.custom_font), .h2 {
        font-size: 28px !important;
        line-height: 24px !important;
        text-transform: none !important;
        font-weight: 600 !important;
        letter-spacing: 0px;
        color: #585454 !important;
    }

    Change the values to your wish.
    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Images not showing

    Hello,

    Did you add content or is it from the demo data? Can i see a link of the page?

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Problem with June Woocommerce Template

    Hello,

    Please deactivate the AP Mega menu plugin first. Then add some wp credentials in a private reply. So we can check out the rest. In what screen size are you having trouble with the search icon in the header?

    I checked the site in mobile and i don’t see any problem besides the menu.
    Let us know.

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Error of Portfolio

    Hello,

    Did you reset the permalinks? If you did and it still is showing 404, then go to your wordpress root folder, rename the .htaccess file and reset the permalinks again.

    Clear cache and refresh site.
    Let us know.
    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Header İnformation Widget contact

    Hello,

    To change the text of “Our Locations”,”Telephone Number”,”Email Address” you need to edit theme files: tower\includes\register\register_shortcodes.php
    To change their style, use custom css. Add this code into your Tower > General Options > Custom Css:

    .contact_information dd .title {
        display: block;
        font-weight: 400 !important;
        color: #a4a4a4 !important;
        font-size: 12px !important;
    }
    .contact_information.light p {
        color: #fff !important;
    }
    .contact_information dt i {
        color: #2fa2ef !important;
    }

    Change the values to your wish.
    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Missing Revolution Slider

    Hello,

    To open slider for edit, go to revolution slider options: https://jmp.sh/ydFjtsa

    To change the slider used, go to page options > Revolution slider, screenshot: https://ibb.co/THTGvsb

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Customize password protection

    Hello,

    I am not sure how can I help now… The link you send has already the button style as the image attached (screenshot).
    The code to customize the button is:

    .btn-layout-medium {
        margin-left: 10px;
    }
    .cl-btn:not(.btn-priority_secondary) {
        background-color: rgba(0,0,0,0);
        color: #0a0a0a;
        border-color: #1e1e1e;
        border-width: 1px;
        font-weight: 600;
    }
    .post-password-form {
        width: 50%;
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    ..in case you want to further change it. Please let me know what change you want to do it further so i can help.

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Site breakdown after updating theme

    Hello,

    So I activated all plugins and none gave a problem. However, all I did was, deactivate them first. Updated the Kirki and Codeless Builder plugin. And then re-activate the third party plugins.

    It’s all ok now.
    Please check your site.

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Site breakdown after updating theme

    Hello,

    One of the third-party plugins was conflicting. I deactivated all, updated and installed the Codeless Builder and Kirki plugin. The site is showing no errors whatsoever. See screenshot: https://ibb.co/jRy5DYY

    I am activating them now, one at a time to find the culprit.

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Customize password protection

    Hello,

    You are right. Please add a link to your site. What exactly do you want to change in its design?

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Missing Revolution Slider

    Hello,

    Sorry but i don’t understand. The sliders are all imported already (screenshot). What problem do you have exactly?

    Best regards!

    6 years, 5 months ago Mirela
    Participant
    in reply to: Customize password protection

    Hello,

    What plugin are you using to add the restriction? This is not part of theme default settings so it’s not covered from support. But you can customize anything using custom css. Just add the code in the Appearance > Customize > General > Custom Codes > Custom Css.

    Best regards!

Viewing 15 posts - 136 through 150 (of 12,542 total)
← 1 2 3 … 9 10 11 … 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