By Marcus Roskill on Tuesday, 12 February 2019
Posted in General Issues
Replies 11
Likes 0
Views 490
Votes 0
Hi Mark,

could you please go ahead and upgrade our LIVE site, like you did for our testing site please?

We need the sidebar on the news feed too, just how it looks now.

Thanks
Katie
Hi Katie,

Before we proceed to upgrade your live site, may I get a confirmation whether you have already backup your live site?

Let us know so we can proceed. Thanks.
·
Tuesday, 12 February 2019 17:41
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes please go ahead.

Thanks
Katie
·
Tuesday, 12 February 2019 18:41
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Katie,

I have helped you update EasySocial to version 3.0 on your live site and applied the related modules to show on the sidebar, similar to the ones on the test site.

Can you help us check again and see how it goes?
·
Tuesday, 12 February 2019 19:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

Yes all good thank you.

Just one thing, see attached, the date doesn't fit in the box.

Also, how do I remove seeing how many attendees there are? I had this feature hidden before?

I would like it to be codded so we don't lose it on updates.

Thanks
Katie
·
Tuesday, 12 February 2019 19:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Katie,

I have helped you hide the attendees counter by disabling this setting in the events module: https://take.ms/WbG6C

For the month strings, it appears they are showing that way due to their font being bolded by custom css: https://take.ms/Ih9t9

I have helped you apply a custom css below which should take effect in EasySocial(https://take.ms/Cbfse). This should address that styling issue.

#es .es-side-widget__bd .mod-es-event .mod-card__calendar-mth {
word-wrap: initial;
}
·
Tuesday, 12 February 2019 19:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Major problem!!!

When someone registers to the site they're getting a 404 error!! See attached screenshot, we need to fix this ASAP!

Please can you get it sorted.

Thanks,
Katie
·
Thursday, 14 February 2019 17:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, it look like you have override your customisation file into this file /public_html/administrator/components/com_easysocial/models/users.php which caused this error.

Because inside this file didn't have this getSystemEmailReceiver function, I already help you added it, it should work fine now, can you give it a check again?
·
Thursday, 14 February 2019 17:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Raymond and Arlex,

Thank you for updating the site and for making these little changes. We noticed after the update, that there were some CSS changes that we had put into the site, that the upgrade over-wrote. We have seen this before, and your instruction was to place changes in specific places so that the upgrades would not over-write them, so we need to understand what we are doing wrong that is causing the CSS to be over-written with each upgrade.
I have attached a screenshot of the home screen after the upgrade, and the one that we have since changed, please be very specific about how we need to make these changes so that the next upgrade doesn't over-write them.

thanks
Marcus
·
Thursday, 14 February 2019 18:01
·
0 Likes
·
0 Votes
·
0 Comments
·
You're most welcome Marcus.

We did updated some of the HTML structure in Easysocial 3.x, it might affected this but it won't remove your custom css from this section backend > Easysocial > theme > custom css

By the way, you can apply this following css to load back previous login page styling :

Find these codes :

#es .btn-es-primary:hover {
color:#f3eeed !important;
background-color: #72724c !important;
border-color: #72724c !important;
}

#es .btn-es-primary-o {
color: #428bca !important;
/* KD 2018-05-19 background-color: #fff !important; */
border-color: #ddd !important; /* KD 2018-05-19 */
text-transform: uppercase!important; /* KD 2018-05-19 */
}


Replace with

#es .btn-es-primary:hover {
color:#72724c !important;
background-color: #f3eeed !important;
border-color: #72724c !important;
}

#es .btn-es-primary-o {
color: #72724c !important;
/* KD 2018-05-19 background-color: #fff !important; */
border-color: #ddd !important; /* KD 2018-05-19 */
text-transform: uppercase!important; /* KD 2018-05-19 */
}
·
Thursday, 14 February 2019 18:24
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post