Close

Profile: cyberspy

Avatar

User posts

Bugs
12 years ago

Hi,

I've just been looking for where I change these values, and it doesn't seem possible.

SevenSpikes.Themes.Alfresco.Common.CompanyInfo
SevenSpikes.Themes.Alfresco.Common.CustomerServices
SevenSpikes.Themes.Alfresco.Common.FAQ
SevenSpikes.Themes.Alfresco.Common.Help
SevenSpikes.Themes.Alfresco.Common.OurOffers
SevenSpikes.Themes.Alfresco.Common.Search
SevenSpikes.Themes.Alfresco.Common.MenuTitle
SevenSpikes.Themes.Alfresco.Common.Phone
SevenSpikes.Themes.Alfresco.Common.EmailName
SevenSpikes.Themes.Alfresco.Common.EmailDomain

They are not included on the theme's Widget Config page, which is where I'd expect them to be.

Regards

Adam

Bugs
12 years ago

Aleks wrote:

Thank you for pointing out that bug. We took your suggestion in consideration and we've developed a better way for the buttons to be positioned and displayed in all resolutions both with or without a title.


Thanks for this - it has indeed fixed the issue.
The controls are quite big though and as they are outside the carousel now, they take a lot of space.

This can be tweaked via the CSS file though so it's not a big problem.

Regards

Adam

Bugs
12 years ago


Support wrote:
By design in the Nop Alfresco theme in the Nop JCarousel items only the details button and the title should be links pointing to the product page. There was a bug in the theme, but we have fixed that and uploaded on our site. You can download the theme again and replace the ~/Plugins/SevenSpikes.Nop.Plugins.JCarousel/Views/JCarousel/JCarousel.cshtml file with the one from the downloaded theme.

Please let us know if the problem still exists!


Sorted! Excellent response - Thanks

I see the responsive issue I mentioned in my second post returned after I replaced the plugin (I'd fixed it in CSS) so this has not been fixed.
Is this because you've not had a chance to review my suggestions, or I've caused another issue with my suggested changes?

Regards

Adam

Bugs
12 years ago

Having just installed jCarousel, I tested it on different size screens as I'm using the responsive Alfresco theme.

It works fine in full size, max-width 980 and 768 but breaks a bit in the smallest size, max-width 480

What happens is the the two left and right arrows, instead of overlaying the right-hand image, move above the carousel.
I had put the carousel in the 'home_page_top' zone.

At this small size, the left/right arrows are half overlayed over the main Menu. This looks very odd.

The solution is simple though - copy the CSS rules from the next largest size into the max-width 480px section. Here are the changes I made:


@media screen and (max-width: 480px) {

    .nop-jcarousel .carousel-title {
        margin: 0 5px 60px;
    }

    .nop-jcarousel .jcarousel-prev-horizontal, .nop-jcarousel .jcarousel-next-horizontal {
        /*bottom: 244px;
        top: inherit;*/

        padding: 6px;
    }
    .nop-jcarousel .jcarousel-prev-horizontal {
        right: 61px; /* New rule */
        /*left: 43%;
        margin-left: -20px;*/

    }
    .nop-jcarousel .jcarousel-next-horizontal {
        /*right: 43%;
        margin-right: -20px;*/

    }
    .nop-jcarousel .item-info {
        display: none !important;
    }
}

Bugs
12 years ago

Hi,
I've just added jCarousel to my site (which is still under development so it's not publicly visible)
I used the 'Home Page Featured Products' as the data source type, and it's fully populated with products, and it scrolls correctly most of the time. So far so good.
When I mouse over a product, a grey panel slides up with the name of the product, the price and a 'Details' button
If I click the 'Details' button, I'm taken off to the correct product page

However, if I click anywhere else in the grey panel, it takes me off to a page called /undefined, with the resultant 404 message

How can I make the URL of the grey panel point to the same place as the 'Details' button.

I'm using nopCommerce 3.10 with the Alfresco theme and the plugins that came with that theme.

Thanks