Skip to Content Skip to Menu

🎃 Happy Halloween! Treat yourself with an awesome discount on memberships! Get 20% off now with code SPOOKY-2024!

[SOLVED] cbsubs plan display

  • krileon
  • krileon
  • ONLINE
  • Posts: 48466
  • Thanks: 8280
  • Karma: 1443
9 years 2 weeks ago #271982 by krileon
Replied by krileon on topic cbsubs plan display

Ah ha, this seems to grab it:

.cb_template * {
box-sizing: content-box;
}
as opposed to:

cb_template .cbregPlanSelector_rounded * {
box-sizing: content-box;
}

The above doesn't hange anthing in the styling. The first one does. It's not perfect, but gives me room to play.

No, don't replace the core box-sizing. That will break Bootstrap sizing. You need to specifically use the below.

Code:
.cb_template .cbregPlanSelector_rounded * { box-sizing: content-box; }


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • jpdenny1
  • jpdenny1
  • OFFLINE
  • Posts: 195
  • Thanks: 25
  • Karma: 5
9 years 2 weeks ago #271984 by jpdenny1
Replied by jpdenny1 on topic cbsubs plan display
Thanks for the heads up. I canged it. Was missing a . at the beginning.

Sticking with the position absolute as per previous post. and with putting in:
.cbregPlanStatus_rounded .cbregName {
width: 810px;
height: 33px;
padding: 16px 20px 40px 20px;

The 40 padding there was needed to put the image & 'free account' in yellow within the header.

This is where I am. The problems, the right side is cut off again and that elusive 'Your Current Subscriptions' is lurking in the background - why doesn't that properly go above the content box, it just hides itself behind it instead.

Here are my pics.




Joomla 3.6.2
CB 2.0.15 Latest Nightly
GJ 3.0.1 nightly
Php version 5.5.35
Auto actions nightly
Activity nightly
Privacy nightly
Conditions nightly
CB Gallery 2.0
.....all nightly!
Uddeim 3.9
Attachments:

Please Log in or Create an account to join the conversation.

  • jpdenny1
  • jpdenny1
  • OFFLINE
  • Posts: 195
  • Thanks: 25
  • Karma: 5
9 years 2 weeks ago - 9 years 2 weeks ago #271985 by jpdenny1
Replied by jpdenny1 on topic cbsubs plan display
Yeah, that 'Your Current subscriptions' was the problem with the display. Pushing stuff right. Wonder why it didn't behave and just display above the box.

I took it out with display:none.

Still have the right side cut off. Will try a few things.

Here is all the css I put in the template.css file regarding this: (I took out the position:absolute, this is all that is there now)

.cb_template .cbregPlanSelector_rounded * {
box-sizing: content-box;
}

#cbregSubscribed {
display:none;
}
.cbregPlanStatus_rounded .cbregName {
width: 810px;
height: 33px;
padding: 14px 20px 40px 30px;
}

Joomla 3.6.2
CB 2.0.15 Latest Nightly
GJ 3.0.1 nightly
Php version 5.5.35
Auto actions nightly
Activity nightly
Privacy nightly
Conditions nightly
CB Gallery 2.0
.....all nightly!
Uddeim 3.9
Last edit: 9 years 2 weeks ago by jpdenny1.

Please Log in or Create an account to join the conversation.

  • jpdenny1
  • jpdenny1
  • OFFLINE
  • Posts: 195
  • Thanks: 25
  • Karma: 5
9 years 2 weeks ago #271990 by jpdenny1
Replied by jpdenny1 on topic cbsubs plan display
This is driving me nuts.

Maybe my use isn't for CBSubs. So far all I have gotten out of it is that every member has a free membership.

I want to display banners that only registered members can click and then subsequently buy them. i.e. they are led to a plan, where they proceed to purchase. Then they supply copy and we fill it with their content. Not exactly complicated use here.

They have nothing to do with registration. At registration each gets a free membership automatically.

So for a plans access I really need the Access level and group to be registered. The module will also be registered view access as will any menu's or sub-menu's that I might link to a plan.

The only way I can get a menu item to show anything at all is to put everything public (with Kyle's instructions followed also) and then it only brings me to the registration form with the plan on top (which doesn't display well either, i.e. plan name and image cover the pricing). The module with the link, all set to public (with Kyle's settings on the same plan) still shows nothing.

My last shot is going to be to try these as merchandise. If that doesn't work I can't sacrifice another day fannying about with CBsubs.

Admittedly I am having both internet and server issues lately, on top of babysitting a very needy & annoying dog, so maybe I need to walk away from it for a day, just wish I could get some traction with it.

Joomla 3.6.2
CB 2.0.15 Latest Nightly
GJ 3.0.1 nightly
Php version 5.5.35
Auto actions nightly
Activity nightly
Privacy nightly
Conditions nightly
CB Gallery 2.0
.....all nightly!
Uddeim 3.9

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48466
  • Thanks: 8280
  • Karma: 1443
9 years 2 weeks ago - 9 years 2 weeks ago #272031 by krileon
Replied by krileon on topic cbsubs plan display
The rounded template just does not seam to fit the design of your site. At this time it is not flexible. It will be once it's rewritten to be styled with bootstrap. At this time it was specifically made for Joomlapolis and packaged as an example. So for now it has very specific width requirements.

For your usage all you need is non-exclusive plans. Then make your banners and have them link to the plans. The plan links are provided in the plan header above their parameters while editing them in CBSubs > Plans. You can not make a purchase in CBSubs without being registered which is why you see registration. You can disable a plans display on registration under the Workflows tab of your plans though.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
Last edit: 9 years 2 weeks ago by krileon.

Please Log in or Create an account to join the conversation.

  • jpdenny1
  • jpdenny1
  • OFFLINE
  • Posts: 195
  • Thanks: 25
  • Karma: 5
9 years 2 weeks ago #272035 by jpdenny1
Replied by jpdenny1 on topic cbsubs plan display
Hi Krileon, yes all are non-exclusive except the free lifetime (free account) default plan, Ihave spotted the url link already.

I have tested as a public user and when logged in. Logged in with a user with an already free lifetime mebership, a user with no membership assigned, an administrator.

I am testing on a module and a menu item with the url link inserted. The menu item actually puts &itemid at the end of the url, but something is not working correctly as doesn't work on module which generates the correct url.

I have played around with the global registration settings. I have tried setting everything public and everything registered. I have tried setting to a specific usergroup.

All plans are set to not show at registration. It is not possible to upgrade too.

It does not want to work for me.

Joomla 3.6.2
CB 2.0.15 Latest Nightly
GJ 3.0.1 nightly
Php version 5.5.35
Auto actions nightly
Activity nightly
Privacy nightly
Conditions nightly
CB Gallery 2.0
.....all nightly!
Uddeim 3.9

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum