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, 11 months ago Mirela
    Participant
    in reply to: Notice "Trying to get property of non-object: codeless_elements.php on line 261"
    This reply has been marked as private.
    10 years, 11 months ago Mirela
    Participant
    in reply to: Issue with demo import

    Hello,

    Sorry for the late reply.
    Please make sure you have enough memory and execution time limit. Try to import data without attachments as they increase the importing time and memory usage. If the burden continues, you can send us your wp credentials in a private reply so we can give it a closer look.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Demo set up (HOME page) not working

    Hello,

    Sorry for the late reply.
    You had not installed the required plugins and neither did set up the sliders.. Or setting up the home page and blog. I did the main configurations for you. Please continue with the customization of the theme.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Bug with the menue (newest version)

    Hello,

    Sorry for the late reply.
    Please go to file css\bootstrap-responsive.css and find this line:

    `.header_1 .header_wrapper,
        .header_4 .header_wrapper {
            position: relative !important;
        }`

    Remove the !important and save.
    To change the menu background color, please go to Header Options > Background.

    Best regards!

    • This reply was modified 10 years, 11 months ago by Mirela.
    10 years, 11 months ago Mirela
    Participant
    in reply to: Clients link target

    Hello,

    Please find this line in file :\specular\vc_templates\cliens.php

    $output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">';
    

    replace with this:

    $output .= '<a target="_blank" href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">';
    

    Save file.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Service Icon Links

    Hello,

    To remove the link feature from services square title, please go to file vc_templates\services_large.php and find these lines:

    $output .= '<h4><a href="'.esc_url($data['link']).'">'.esc_html($title).'</a></h4>';
            $output .= '<p>'.do_shortcode($data['description']).'</p>';

    replace with these:

    $output .= '<h4>'.esc_html($title).'</h4>';
            $output .= '<p>'.do_shortcode($data['description']).'</p>';

    Do the same for the services circle, in file vc_templates\services_medium.php

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Home page not showing on portfolio 3

    Hello,

    Sorry but i don’t understand what page are you referring to. Can you please send the online demo link of it?

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Reverse order on the "Recent Portfolio" items

    Hello,

    You can use any post custom order plugin for this. We can recommend Post Type Order.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: More rows on "Recent Portfolio" element

    Hello,

    Please go to file: includes\core\codeless_elements.php and find these lines:

    array (
    
          'heading' => 'Portfolio Rows',
    
          'admin_label' => true,
    
          'param_name' => 'rows',
    
          'type' => 'dropdown',
    
          'value' => 
    
          array (
    
            'One Row' => '1',
    
            'Two Rows' => '2',
    
            'Three Rows' => '3',
    
            'Four Rows' => '4',
    
            'Five Rows' => '5',
    
          ),
    
        ),

    add here as much rows as you want. Example:

    'Four Rows' => '4',
    
     'Five Rows' => '5',
    
     'Six Rows' => '6',
    
     'Seven Rows' => '7',

    Save file! Now go to file vc_templates\recent_portfolio.php and find these lines:

    $grid = 'three-cols';
    
            switch($columns){
    
                case '3':
    
                    $grid = 'three-cols';
    
                    break;
    
                case '2':
    
                    $grid = 'two-cols';
    
                    break;
    
                case '4':
    
                    $grid = 'four-cols';
    
                    break;
    
                case '5':
    
                    $grid = 'five-cols';
    
                    break;
            }
    

    Add here the new rows. Example:

    `           case '5':
    
                    $grid = 'five-cols';
    
                    break;
    
                 case '6':
    
                    $grid = 'six-cols';
    
                    break;
            }`

    Save! In page, recreate a recent portfolio element.

    Best regards!

    • This reply was modified 10 years, 11 months ago by Mirela.
    10 years, 11 months ago Mirela
    Participant
    in reply to: Responsive in phones

    Hello,

    Please double check your logos. I see here that the light logo is imported in the dark logo place and the other way around. Also please add these lines into your custom css box:

    @media (max-width: 979px){
    .header_5 .mobile_small_menu {
      display: block;
    }}

    In what device is the second screenshot taken? I see that in ipad it is ok, screenshot.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Menu and codeless slider not displaying on customised template

    Hello,

    The template you created is not part of the original theme files/templates. It is a customization you added for your convenience. Please see our support policies for more information.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Website not working (from local to on-line)

    Hello,

    I am glad to know everything is ok now. We would suggest you to use “WP Imigrate DB” plugin for later transfers. It is a easy and efficient way to export/import your site without any issues like these you experienced.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Notice "Trying to get property of non-object: codeless_elements.php on line 261"

    Hello,

    I just logged in and i had no problems. However, i took no actions in your site. As we previously said, the latest version of Redux framework is supported by php vs >= 5.5.6.
    You have PHP Version 5.4.16 on your server. It is important that you update the PHP. Contact your host provider and ask them to do it.
    Let us know, then so we can check this again and we’ll do our best to sort everything out.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Responsive in phones

    Hello,

    Can i please see a link where is this running? I tried to open the site from the images but with no success.

    Best regards!

    10 years, 11 months ago Mirela
    Participant
    in reply to: Help with Mobile

    Hello,

    You just have some elements too big for the mobile settings. It can be easily changed with some css. Please add this code into your custom css box:

    @media (max-width: 480px){
    #logo img {
      margin-left: 28px;
      width: 87%;}
    h2 {
      line-height: 25px;
      font-size: 22px !important;
      margin-right: 75px;}
    }

    Let us know.

    Best regards!

Viewing 15 posts - 11,911 through 11,925 (of 12,542 total)
← 1 2 3 … 794 795 796 … 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