about - admin

Forum Replies Created

  • Question status -
  • Support Staff
    Keymaster

    Parse error: syntax error, unexpected end of file in /home/bo506/public_html/wp-content/themes/Ceckito/functions.php on line 111

    You’re missing closing bracket here, }. Add that after return $title;.

    To add portfolio, go to ‘C’ shortcodes, Media Elements / Portfolio. Click on Custom content portofolio and install the plugin. Now add items to portfolio with images, and also tag portfolio items however you like. Go back to Media Elements / Portfolio, and choose portfolio category (tag) you want to display, number of items and in how much columns you want display. That’s it.

    If you have any more questions, feel free to ask.

    P.S.
    If you’re using full width / multi – sections template, you’ll need at least 1920px wide images. This way you have empty space. If you don’t have that wide images, or you won’t want it so big, you can choose default template, and click on full width under “Layout”, that’ll give you centered slides.

    #5095
    Support Staff
    Keymaster

    Hi Wayan,

    there’s no documentation in forums for Ceckito theme particularly, but it’s fairly easy.
    To add a slider go to post/page editor, click on “C” (Ceckito shortcodes), and go to Media elements / Slider.
    Check the options you want, it should be self-explanatory. Click insert.

    You’ll get something like this:

    
    [slider auto="true" pause="4000" arrows="true" bullets="true"]
    
    Add slides here
    
    [/slider]
    

    Delete the text “Add slides here”, and click again on “C”, Media elements / Slide. Upload image. Set link for the image if needed, set slide title, text, read more text etc…

    Now you should have something like this:

    
    [slider auto="true" pause="4000" arrows="true" bullets="true"]
    
    [slide src="https://your-site.com/wp-content/uploads/slide-image.jpg"]
    
    [/slider]
    

    Repeat the process to add more slides. To be super-clear, code needs to looks like this:

    [slider auto="true" pause="4000" arrows="true" bullets="true"]
    
    [slide src="https://your-site.com/wp-content/uploads/slide-image.jpg"]
    [slide src="https://your-site.com/wp-content/uploads/slide-image-2.jpg"]
    
    [/slider]
    

    (it won’t look exactly like this if you add slide title and slide text and other fields, and don’t let this confuse you, it’ll be longer)

    That’s it. Now, if you need full width post, there are couple more steps to it.
    This is possible only on page, not for posts, so you need to create page for this. Then select “Multi Sections” for page under “Page attributes”, add slider as explained above.

    Changing logo through theme options is not currently possible, but you can create filter in functions.php after this line: hybrid_set_content_width( 830); like this:

    
    add_filter( "hybrid_site_title", 'my_custom_image' );	
    function my_custom_image( $title ) {
    
            $tag = ( is_front_page() ) ? 'h1' : 'div';
            $title = get_bloginfo( 'name' );
            $site_url = get_option( 'siteurl' );
            $img = '<a title="'. esc_attr( $title ) .'" href="'. esc_url( $site_url ) .'"><img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" /></a>';
            $title = sprintf( '<%1$s id="site-title">%2$s</%1$s>', tag_escape( $tag ), $img );    
    
            return $title;
    
    }

    Change “URL TO YOUR IMAGE” to image link.

    If you have more questions, feel free to ask.

    Regards,
    Sinisa

    #5093
    Support Staff
    Keymaster

    Don’t say sorry, no problems, we’re here to help! Glad it worked! πŸ™‚

    #5077
    Support Staff
    Keymaster

    I’ve already answered you in another thread, but you’re missing ‘>’ before .
    You need this:
    <iframe width="100%" height="700px" frameborder="0" scrolling="no" src="https://bettingtracker.net/api/adopteunprono/Cyril/dashboard"></iframe>

    and this:

    <iframe width="100%" height="350px" frameborder="0" scrolling="yes" src="https://bettingtracker.net/api/adopteunprono/cyril/bets"></iframe>

    #5075
    Support Staff
    Keymaster

    Hi Cyril,

    I guess you solved this. Code you posted has multiple errors, but I guess you saw that and fixed it.

    < iframe width =" 100% "height =" 700px " frameborder =" 0 "scrolling =" no " src =" https://bettingtracker.net/api/adopteunprono/Cyril/dashboard "< / iframe >

    It should be:

    <iframe width="100%" height="700px" frameborder="0" scrolling="no" src="https://bettingtracker.net/api/adopteunprono/Cyril/dashboard"></iframe>'

    If you have any other questions, let me know.

    #5074
    Support Staff
    Keymaster

    Hi Cyril,

    you can put something like this in functions.php:

    register_sidebar(array('name'=>'Header Sidebar',
    	        'before_widget' => '<div class="widget %2$s">',
    	        'after_widget' => '</div>',
    	        'before_title' => '<h3>',
    	        'after_title' => '</h3>',
    	    ));

    and then in header.php at the end of file add this:

    <?php dynamic_sidebar( 'header-sidebar' ); ?>

    Now you can drag widgets to header sidebar and they will show.

    For the second sidebar, it’s the same procedure, and you would need to put call for sidebar in sidebar.php file, right before this <div class="clearfix"></div>.
    I’m not sure what you’re trying to achieve, why would you put sidebar there?

    #5067
    Support Staff
    Keymaster

    Background image without link is easy to explain, just find large image, and find this in style.css:

    html body {
      background: #eeeeee;
      font-size: 12px;
      font-family: Arial, Verdana, Tahoma, Times New Roman;
      line-height: 1.5em;
      color: #828282;
    }

    and change it to:

    html body {
      background: #eeeeee url(images/YOUR-IMAGE.jpg) no-repeat;
      font-size: 12px;
      font-family: Arial, Verdana, Tahoma, Times New Roman;
      line-height: 1.5em;
      color: #828282;
    }

    Name your background image however you want, upload it to theme/images folder, and replace name in code ( YOUR-IMAGE.jpg).

    Clickable image is more complex and it’s out of the scope of support.

    and for the theme, I’ve just changing the 5 lines code you modified in the header.php but it’s not working, so I upload all the theme and it’s good,

    Yes, header.php is not the only file changed, thats why it’s not working. These are modified files:
    includes/slide.php
    includes/tabs.php
    js/jquery.aw-showcase.min.js
    header.php

    Thank you for letting me know about email notifications. Some other stuff is not working after Bbpress update which I’ll address shortly.

    If you have any other questions, feel free to ask.

    Best regards,
    Sinisa

    #5049
    Support Staff
    Keymaster

    Please try again to re-download theme from the account page. Seems that .zip wasn’t completely uploaded.
    Let me know if everything works.

    Do you want normal background image, or linked background image (on click it would go to google.com for example)?

    #5046
    Support Staff
    Keymaster

    Hi Cyril,

    I fixed Jquery conflict problem, please re-download theme from your account page: https://www.simplewpthemes.com/account/. If you still have any problems, just let us know, we’ll fix it (please also include URL, plugin names etc).

    Best regards,
    Sinisa

    #5020
    Support Staff
    Keymaster

    Hello Zik,

    can you please post URL? Default search widget is working, so I need to see what’s going on.
    Please bare in mind that support will work today for few more hours until January 4th, we’re going to vacation.

    #4986
    Support Staff
    Keymaster

    Ok then, great! Setting thread as resolved.

    Regards,
    Sinisa

    #4974
    Support Staff
    Keymaster

    Hi Cyril,

    once theme is activated under “appearance” will appear “SWT Theme Options”. All the settings are there, slider, advertisements and the rest.

    For slider, choose a category you want display in the slider, number of posts and add featured image to the post. Here’s video on the last part:

    #4969
    Support Staff
    Keymaster

    Hi Jeremy,

    it’s fixed now, please backup theme. It was old jquery version conflict, but now it’s fixed.
    Good luck with your project!

    Regards,
    Sinisa

    #4944
    Support Staff
    Keymaster

    Glad you’re happy! πŸ™‚

    #4943
    Support Staff
    Keymaster

    Hey Jeremy,

    this happened because your logo had to much height, but I’ve changed height to 261px in #topwrap in style.css and added #slidewrap {clear:both;} at the end of file just in case (this will prevent slider from being pushed to the right).

    Keep riding! πŸ™‚

    P.S.
    My colleague and I from this site are both cyclists πŸ™‚

    #4940
Viewing 15 posts - 91 through 105 (of 163 total)