Forum Replies Created

Viewing 15 posts - 3,286 through 3,300 (of 3,354 total)
  • Posted in:
  • in reply to: portfolio carosel #756
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Sorry, was looking in the wrong place.

    To have it stop on hover, that’s something they custom built, here’s the code from their page. You should add this above carousel.jcarousel({ :

    function mycarousel_initCallback(carousel)
    {
        // Disable autoscrolling if the user clicks the prev or next button.
        carousel.buttonNext.bind('click', function() {
            carousel.startAuto(0);
        });
    
        carousel.buttonPrev.bind('click', function() {
            carousel.startAuto(0);
        });
    
        // Pause autoscrolling if the user moves with the cursor over the clip.
        carousel.clip.hover(function() {
            carousel.stopAuto();
        }, function() {
            carousel.startAuto();
        });
    };

    Then, make carousel.jcarousel({ look like this:

    carousel.jcarousel({
    auto: 1,
    scroll: 1,
    wrap: 'circular',
    buttonNextHTML: '',
    buttonPrevHTML: '',
    initCallback: mycarousel_initCallback
    });

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Disable Love it plugin #753
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hello,

    The simplest way is to add this custom CSS in the theme options:

    .love-it-wrapper { display: none !important; }

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Gallery lightbox dupe #751
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Glad to hear that 🙂

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Lightbox in porfolio #750
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi,

    I’ve checked your site and the lightbox works fine.

    Note that only single portfolio pages have the lightbox.

    That is, something like this, with ? in the URL, has it:
    http://www.angelfeliciano.com/abtester/?portfolio=michelle

    While something like this, since it’s a portfolio index that leads to single portfolio pages, doesn’t:
    http://www.angelfeliciano.com/abtester/abtalent/

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Creating a Testimonial Shortcode within a Widget #749
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Thank you!

    If anything else, we’re here to help 🙂

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: CSS to hide all comments forms? #748
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi Emma,

    To hide ANY form on the whole site, add this custom CSS in the theme options:

    form { display: none !important; }

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Creating a Testimonial Shortcode within a Widget #672
    Cosmin – SUPPORT
    Member
    Post count: 3851

    You’re welcome Graffig 🙂 If you like the product and support, please do rate the theme in your ThemeForest Download section, we would greatly appreciate it!

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Add video from server to Pinpoint theme #671
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi,

    These are the embeds that are possible with the theme. For hosted videos, I suggest using a plugin.

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Site Crawlability? #670
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi Sarah,

    Of course the theme is crawlable 🙂

    The menus for mobile are shown/hidden via CSS media queries, and any SEO expert should know that doesn’t affect you. They should also, after examining our code, realize that there is no JS used to bring in menus.

    JS is needed for all the eye-candy, that’s why we say it needs to be turned on; it’s used only for effects, nothing else.

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    P.S.: not really my business, but I would try and ask a few more SEO experts, if you know what I mean 😉

    in reply to: Remove ?portfolio= from URL structure #668
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi Carina,

    You would need to edit a theme file. There still needs to be something in there, it can’t be completely removed, but at least let’s try and make it look nicer, as in /portfolio/some-project 🙂

    Open includes/custom-post-types/portfolio-type.php and, on line 48, change this:

    'rewrite' => false,

    to this:

    'rewrite' => array( 'slug' => 'portfolio' ),

    Of course, you can name it whatever you like and that will be your portfolio base URL, as long as you don’t have another page/post with the same URL slug.

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Footer problem #665
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Couldn’t help mentioning that I love it when I see people helping each other out 🙂

    Thanks 0nyx!

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: "figure" set a max-heigth #663
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi,

    Let’s see, maybe this does the trick 🙂

    Add this custom CSS in the theme options and adjust the value as you need:

    .blog-item figure img {
        max-height: 100px !important;
    }

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Change icon-file in massonery view #661
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hey, thanks for the kind words, glad to hear you’ve got it working 🙂

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Change How Homepage slider Works #660
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi,

    I suggest hiring a freelancer if you need to customize the theme code, as support cannot cover customizations.

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

    in reply to: Google does not index home page #659
    Cosmin – SUPPORT
    Member
    Post count: 3851

    Hi,

    This isn’t exactly theme-related, so I would advise checking your robots.txt again. Also, Google doesn’t update meta description too fast, so there is a possibility that it’s yet to pick it up.

    Regards,

    ————————————————————————————————————

    Cosmin
    Support Assistant

Viewing 15 posts - 3,286 through 3,300 (of 3,354 total)