-
-
Hi,
I’m Giovanni and I’m the new new webmaster of https://www.trademark-you.com/.I’ve created the new page https://trademark-you.com/it/test/ in order to do tests.
I’ve added a slideshow done with “Codeless Slider” but as you can see there are two errors on top of the page (Notice: Undefined index: font-weight in /misc/25/000/095/453/5/user/web/trademark-you.com/wp-content/themes/tower/includes/codeless-slider/codeless_slider.php on line 195)
Could tou please help me to remove these two errors?Another question please
I’ve created the slideshow with “Codeless Slider” but I saw that in the CMS there is “slider revolution”: can I use “Codeless Slider” instead of “slider revolution” in all the site? If yes, can I remove “slider revolution” plug-in?Thank you!
Giovanni- This topic was modified 7 years, 2 months ago by TMYAdmin.
-
Hello,
This is a notice not an error. You can easily remove by setting up WP_DEBUG to false. Go to your wp root folder, find wp-config.php file and make sure the wp debug is set to false:
define('WP_DEBUG', false);
Do you have custom code added in the site? I see an error in your console, for “Unexpected token <". Can you please comment out any additional code. Theme has a build-in slider, that is Codeless Slider, and two additional slider plugins. The Revolution slider and Layerslider. The additional plugins are included in theme package and you can install them with the other plugins. If you do not want to use them, just go to your Plugins menu in WordPress main menu. Disable the unwanted plugin. Uninstall if you never plan to use it. Don't worry, the file is always available in case you change your mind and decide to use it in the future. Let us know for anything. Best regards!
-
Hello
thank you very much!
<span style=”color: #4b4d4d; font-family: Raleway; font-size: 14px; line-height: 22px;”>”Do you have custom code added in the site?” Do you mean css code?</span>
I have other questions (they should be the last :-))
-how can I underline the link in the blog posts?
-how can have the titles of the posts in lowercase? I would have the uppercase when I write in uppercase only
-in the following page https://trademark-you.com/it/chi-siamo/ how can I see all the text under the people images? It is cut
-About the blog: is possible to set the blog as shown in the demo https://codeless.co/tower/business/blog/ ?
-is it possible to add the miniature image in the “related post”? the one at the end of the posts?
-when I watch this page https://trademark-you.com/it/test/ with a mobile phone, the slider (done with Codeless Slider) the height of the banner reduced so there is an empty space below: is it ocrrect?
Thank you and sorry for all these questions :-)
Best
Giovanni
-
Hello,
1-The code can be css or javascript. Do you have any additional code added in General Options > Tracking Code / Custom CSS / Custom JS (screenshot)?
2-You can underline the links in blog single posts, with custom css. Add this code into your custom css box in General Options:
.single-post a { text-decoration: underline; }
Or underline the links in blog page by adding this code instead:
.blog a { text-decoration: underline; }
3-Titles of the posts: if you set them up to show in lowercase, then even if you write in uppercase, they will automatically transform in lowercase. So add this code:
.blog-article.standard-style .content h1 { text-transform: inherit !important;}
in order to have the titles in the case letter your write them.3-Staff description: go to file vc-templates/staff.php and find this line:
$output .= '<p>'.codeless_text_limit(get_the_excerpt(), 25).'</p>';
Replace with this:
$output .= '<p>'.codeless_text_limit(get_the_content(), 255).'</p>';
Where 255 is the number of words to show. Increase further if needed.4-Blog style: the demo you pasted, has blog style set to large image with sidebar. To have this style go to General Options > Blog Config > Blog Style, select the normal style. See screenshot: https://postimg.org/image/6shzx6ulqj/
I see you already have that style. Add this code into your custom css box to increase the image size:.blog .row { margin-left: -100px; }
5-“add the miniature image in the “related post”? -Can you please be more specific? Where do you want to add related posts?
6-Add this code into your custom css box:
@media (max-width: 480px){ #content { margin-top: -77px !important; }}
Let us know.
Best regards!
-
Hi again
an d thankyou! Soon I’ll check your motes but now I have very urgent matter: if I go in the blog I can’t see the texts! Could you please have a look soon please?
Thank you in advance!
Best!
Giovanni
-
Hello,
Do you mean the single posts? Or the posts text in blog page? You don’t seem to have any text in the single posts itself. Is this not correct?
Please send us your wp credentials in a private reply. So we can check this out and fix whatever it’s happening.Best regards!
-
-
-
Hello,
You have a lot of third party plugins installed and also some errors in the custom js box in General Options. The additional plugins could be affecting theme’s css as the text in blog is set to hide from some css.
I added this block of css into your custom css box in General Options:.blog-article.standard-style .content .text { display: block !important; }
The posts do show up the text now.
Please clear cache and refresh pages.
Let us know.Best regards!
-
Thank you very much!
I’ll try to delete some plugins.
thank you again!
best
Giovanni
-
Hi
regarding the point:
“-how can I underline the link in the blog posts?”
——————
if I put:
.single-post a {
text-decoration: underline;
}or
.blog a {
text-decoration: underline;
}everything is underline (title, site menu etc) while I need the underline only in the ling tha you find in the post test, not in the title etc
Can you please have a look? If you need, last time I gave you the credential…
thank you!
Giovanni -
Hello,
Please try editing your css to this:
.single-post p a { text-decoration: underline; }
Let me know.
Best regards!
-
-
You must be logged in to reply to this topic.