Forum Replies Created
-
This reply has been marked as private.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!
in reply to: Demo set up (HOME page) not workingHello,
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!
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
!importantand 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.
in reply to: Clients link targetHello,
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!
in reply to: Service Icon LinksHello,
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!
in reply to: Home page not showing on portfolio 3Hello,
Sorry but i don’t understand what page are you referring to. Can you please send the online demo link of it?
Best regards!
in reply to: Reverse order on the "Recent Portfolio" itemsHello,
You can use any post custom order plugin for this. We can recommend Post Type Order.
Best regards!
in reply to: More rows on "Recent Portfolio" elementHello,
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.
in reply to: Responsive in phonesHello,
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!
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!
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!
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!
in reply to: Responsive in phonesHello,
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!
in reply to: Help with MobileHello,
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!
-
This reply was modified 10 years, 11 months ago by