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

  • 11 years, 3 months ago Mirela
    Participant
    in reply to: Portfolio Problems

    Hello,

    To remove pagination in portfolio page, please go to file specular\includes\core\codeless_routing.php and find these lines(137):

    switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 3;
    			    break;
    			case '2':
    				$p_per_page = 8;
    				break;
    			case '3':
    				$p_per_page = 9;
    				break;
    			case '4':
    				$p_per_page = 12;
    				break;
    			case '5':
    				$p_per_page = 10;
    				break;
    		}

    According to the number of columns of your portfolio, change the value above. Example, if you have a three column portfolio, edit these lines:

    case '3':
    				$p_per_page = 9;
    				break;

    to these:

    case '3':
    				$p_per_page = 99;
    				break;

    This will show 99 items in a page. Make sure you have chosen all categories. If the issue persists, send us your wp credentials in a private reply. So we can give a closer look.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Responsive Headers

    Hello,


    @joshkallmeyer
    ,
    I have added this code:

    @media (max-width: 767px){
    .header_page, .header_page {
    height: 150px !important;
    }
    }

    into your custom css box. This is how it looks now, screenshot.
    Let me know if you need further help.

    Best regards!

    • This reply was modified 11 years, 3 months ago by Mirela.
    11 years, 3 months ago Mirela
    Participant
    in reply to: Home page slider and menu not working

    Hello,

    Did you made any changes to theme files? Or installed any new plugin lately? Make sure you have set up the home page in General Options and in Settings > Reading. You should assign an existing slider to homepage, or create a slider named “home”.
    If the issue persists, send us your wp credentials in a private reply. So we can give a closer look.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Demo Content Not Working

    Hello,

    Please increase max execution time. You may ask your hosting provider to do that for you. If the issue persist, please send us your wp credentials so we can help you.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Menu hover style

    Hello,

    Sorry that will not be added again. But if you want it, just add these lines into your custom css box:

    .header_1 nav .menu > li > a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
    }
    .header_1 nav .menu > li > a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
    }

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: div.swiper-wrapper height too big in recent portfolio

    Hello,

    Please make sure you did not set any height to the row containing the portfolio element. Normally there isn’t any extra space between portfolio items and other elements. If that’s not the case, you can send us your site’s link so we can check it.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Contact form not working.

    Hello,

    This is a hosting issue. Please contact your hosting provider, if you are not able to send/receive emails via contact form.
    Let us know.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: News language

    Hello,

    Do you use any translation plugin? We recommend the WPML plugin. You can also translate theme text via .PO files. If you can’t find any string there, let us know. Another way is to directly replace text in files. This is not recommended since it will prevent you from freely updating theme in the future. However, you can find “READ MORE” in files:
    -specular\includes\view\blog\loop-fullscreen.php
    -specular\includes\view\blog\loop-grid.php
    -specular\includes\view\blog\loop-index.php
    -specular\includes\view\blog\loop-second-style.php
    -specular\includes\view\blog\loop-timeline.php
    -specular\lang\en.po

    Find “Posted by” and “Comments” in files:
    -specular\includes\view\blog\loop-grid.php
    -specular\includes\view\blog\loop-index.php
    -specular\includes\view\blog\loop-second-style.php
    -specular\includes\view\blog\single-fullscreen.php
    -specular\lang\en.po
    -specular\vc_templates\latest_blog.php
    -specular\vc_templates\recent_news.php

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Social media email link doesn’t work

    Hello,

    Please make sure you have set the mail link properly. It should be: mailto:[email protected] If the issue persists, send us your login data so we can take a closer look.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Social share

    Hello,

    Did you made any changes to the theme files? Or installed any new plugin recently? Please send us your wp credentials in a private reply, so we can give a closer look.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Video Header Pop Up Video

    Hello,

    You have the option to add the link in Codeless Slider Options > Content > Button Link (screenshot)

    Best regards!

    • This reply was modified 11 years, 3 months ago by Mirela.
    11 years, 3 months ago Mirela
    Participant
    in reply to: Google Fonts(Individual Title) not responsiv

    Hello,

    I have added these code into your custom css box:

    @media (max-width:767px) {
    h3 {
    font-size: 28px !important;
    }
    }

    It looks ok now. If you want to change it, just edit the value.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Cannot modify header information error

    Hello,

    Please go to file: /public_html/wp-includes/pluggable.php and make sure there isn’t any empty space at the end of it. As for the other warning, we have answered you in this topic of yours.

    Best regards!

    11 years, 3 months ago Mirela
    Participant
    in reply to: Desactivate lateral menu

    Hello,

    Please  edit the given code to this:

    .top_wrapper {
    
    padding-top: 90px !important;
    
    }

    Best regards!

    • This reply was modified 11 years, 3 months ago by Ruco.
    11 years, 3 months ago Mirela
    Participant
    in reply to: content area cannot be made transparent

    Hello,

    That is strange. We have tested it and the content background is kept transparent when chosen so.  Have you installed any  plugin lately? It may interfere with themes css.  I see there is added css code that overwrites the one of the theme. (screenshot) If you want, you can send us your wp credentials in a private reply so we can give a closer look.

     

    Best regards!

Viewing 15 posts - 12,526 through 12,540 (of 12,542 total)
← 1 2 3 … 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