Forum Replies Created
-
in reply to: Logo does not support SSL
Hello,
The logo url is being generated automatically from get_template_directory_uri() and home_url() functions. See the function in file functions-specular.php. See screenshot: https://postimg.cc/image/ftju5l1jr/
To force the https in logo url, in the same function, edit this line:
$logo = "<a href='".esc_url($url = home_url( '/'))."'>".$logo.$logo_light."</a>";
to this:
$logo = "<a href='".esc_url($url = home_url( '/', 'https' ))."'>".$logo.$logo_light."</a>";Best regards!
-
This reply was modified 7 years, 10 months ago by
Mirela.
in reply to: Installation IssuesHello,
Can you please add some wp credentials in your profile data? SO i can give this a closer look.
Read this article for more information.Best regards!
in reply to: Logo does not support SSLHello,
The logo by default will take the image url set up in the logo option in General Options. This option settings are set up in file include/core/codeless_options.php. See the section for logo:
array( 'id' => 'logo', 'type' => 'media', 'title' => __('Upload Logo', 'codeless'), 'desc' => __('Upload here the logo that is placed in top of the page ', 'codeless'), 'subtitle' => __('Upload any media using the WordPress native uploader', 'codeless'), 'default' => array('url' => get_template_directory_uri().'/img/logo.png'), ),The url is gotten by wordpress function
get_template_directory_uri().Best regards!
in reply to: Import Template FreezeHello,
Please try increasing
max_execution_time = 300andupload_max_filesize = 32Mor try importing manually using the xml file. Follow these steps:
1-Go to Tools > Import > WordPress (run import): https://postimg.cc/image/5k14nskcn/
2-Now open your theme folder and import file content_1.xml from this path: \picante\includes\codeless_demos_content\the_demo_you_want_name
(screenshot)3-Import this file into wordpress importer. Let me know how it goes.
Best regards!
in reply to: Specular – Couple of bugs (Mobile menu, accordion)Hello,
Looks like some scripts are conflicting with theme. Can you please deactivate all third party plugins? See screenshot: https://postimg.cc/image/5k14nskcn/
Let me know how it goes.
Best regards!in reply to: Logo does not support SSLHello,
Actually that is just one of the scenarios.
1-Did you check the situation in Settings > General? Do you have set secure link here?
2-Check in database that all links are changed succesfully to https after the installation of ssl. One of the mentioned plugins can help with this.3-The logo code is present in file specular\header.php. It’s called dynamically. While the function is present in file functions-specular.php:
/* -------------------- Get Logo Image ------------------------------------------ */ if(!function_exists('codeless_logo')) { function codeless_logo($default = "") { global $cl_redata; $output = ''; if(!empty($cl_redata['logo']['url']) || !empty($cl_redata['logo_light']['url']) ) { if(!empty($cl_redata['logo']['url'])) $logo = "<img class='dark' src=".esc_url($cl_redata['logo']['url'])." alt='' />"; if(!empty($cl_redata['logo_light']['url'])) $logo_light = "<img class='light' src=".esc_url($cl_redata['logo_light']['url'])." alt='' />"; $logo = "<a href='".esc_url(home_url('/'))."'>".$logo.$logo_light."</a>"; } else { $logo = get_bloginfo('name'); if($default != '') $logo = "<img src=".esc_url($default)." alt='' title='$logo'/>"; $logo = "<a href='".esc_url(home_url('/'))."'>".$logo."</a>"; } return $logo; } }The link is generated dynamically from home url.
Best regards!
in reply to: Specular – Couple of bugs (Mobile menu, accordion)Hello,
Can you please add some wp credentials in your profile data? So i can give this a closer look.
Read this article for more information.Best regards!
in reply to: Masonry Portfolio for TowerHello,
@Freedonut,
Please open new ticket and send us a link of the site and some wp credentials. Some can understand better the situation.Best regards!
in reply to: Address IssuesHello,
The code is suggested n this ticket of yours: https://support.codeless.co/?topic=shop-not-displaying-products-using-internet-explorer
No error was generated then. I suggest you check it out closely to not have made any mistake while pasting. Perhaps a missing bracket or misplaced coma.Best regards!
in reply to: Problems installing themesHello,
I set it up. Please check your site and let me know.
Best regards!
in reply to: PORTFOLIO HOVER not displaying correctlyHello,
@Freedonut, Please add his code into your Custom Css box in General Options:.portfolio-item.overlayed h4 { font-size: 14px !important; }Change the font until you are satisfied with the result.
PS: For future questions, please open your own tickets!
Best regards!
-
This reply was modified 7 years, 10 months ago by
Mirela.
Hello,
@Freedonut,
Please open new ticket and send us some wp credentials in a private reply. So i can check what is happening.Best regards!
in reply to: Video in column backgroundHello,
Please try adding this css:
.tp-caption .fullscreenvideo { width: 782px !important; height: 441px !important; }Let me know.
Best regards!
in reply to: Logo does not support SSLin reply to: Portfolio thumbnails not clickable on mobileThis reply has been marked as private. -
This reply was modified 7 years, 10 months ago by