Forum Replies Created
-
Author
-
sharmstr
ModeratorThose aren’t theme problems, they are Buddypress, WordPress and bbPress issues. With that said….
1 – WP admin – settings – menu – buddypress – profile
2 – Not sure if I follow, but if you’re talking about the information you’ve typed in the visual editor when you created the forum category, you can hide that
COPY CODE#bbpress-forums .bbp-forum-info .bbp-forum-content { display: none !important; }
3 – Ask over on the bbPress forum https://bbpress.org/forums/
4 – The Kleo documentation mentions “- Social Articles – allow users to create posts right from their BuddyPress profile”
Hope that helps.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 18:45 in reply to: Full-width template page with just menus and no margins #37349sharmstr
ModeratorNo problem 🙂
There’s a lot of settings… everywhere. I’ve got almost a year working with Kleo on you 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 18:22 in reply to: Full-width template page with just menus and no margins #37346sharmstr
ModeratorYou can set all of that at the bottom of the page in the settings.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 17:57 in reply to: Full-width template page with just menus and no margins #37340sharmstr
ModeratorI already gave them to you. See my first response.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhy did you remove this?
COPY CODE.offcanvas-sidebar { width: 400px; }
dark background on close. add this
COPY CODE.offcanvas-type-overlay .offcanvas-sidebar { background: none; }
left border
COPY CODE.offcanvas-sidebar.is-open { border-left: 1px solid #eee; }
I strongly suggest you hire someone to help you with all of this.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatoralready reported https://archived.seventhqueen.com/forums/topic/sidebar-assistance
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorConfirmed. @abe – only happens when Front page set to ‘latest posts’.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHmmm. I’m using analytics the way you’re trying to do it. You definitely have to wrap it with <script> tags like you have in your first example. You say google cant find it, but have you looked at your page source? Right click on any page, crt F to find GoogleAnalyticsObject.
Also, verify that you dont have fancy quotes. They are present in the code examples you provided, but that could be this site doing that when you pasted it here.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorrespond privately with a link and credentials to your site.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator@roderswiss – do you still have an issue if you use the 2014 theme instead of kleo?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator– to fully close
COPY CODE.offcanvas-right.offcanvas-type-default .offcanvas-sidebar, .offcanvas-right.offcanvas-type-overlay .offcanvas-sidebar { -webkit-transform: translate(400px,0); transform: translate(400px,0); }
– background color
COPY CODE.offcanvas-sidebar.is-open { background-color: #fff; }
– add a menu happens because you’re using the side menu without a menu. Try this to hide it
COPY CODEul.offcanvas-menu { display: none; }
– your activity issue probably has something to do with your minutes to read plugin throwing errors.
– show less
COPY CODEspan.bp-toggle-less { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 16:56 in reply to: Full-width template page with just menus and no margins #37324sharmstr
ModeratorForgot to mention, if you truly need it for a single page and not a page template, you can use VC to set css for that page only. Just click on the gear icon at the top.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.December 2, 2014 at 16:54 in reply to: Full-width template page with just menus and no margins #37323sharmstr
ModeratorKleo (and other themes) loads parts of the page using several different .php files. You’ll have to create new files for the sections that need to be changed so you can call your own custom files and functions. Its more work than I’m willing to do for you, but here’s some things that should help.
– Start will a copy of /page-templates/full-width.php.
– Put this is your childs function.php file. It will print out what files the page loads in the page source. From there you can figure out what sections you need to override (example: instead of calling general-before-wrap.php where the container class is set, you can call custom-general-before-wrap.php)
COPY CODE/** * show included template files */ add_action('all','template_snoop'); function template_snoop(){ $args = func_get_args(); if( !is_admin() and $args[0] ){ if( $args[0] == 'template_include' ) { echo "<!-- Base Template: {$args[1]} -->\n"; } elseif( strpos($args[0],'get_template_part_') === 0 ) { global $last_template_snoop; if( $last_template_snoop ) echo "\n\n<!-- End Template Part: {$last_template_snoop} -->"; $tpl = rtrim(join('-', array_slice($args,1)),'-').'.php'; echo "\n<!-- Template Part: {$tpl} -->\n\n"; $last_template_snoop = $tpl; } } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWp admin – settings – visual composer: enable vc for portfolios
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorrespond privately with a link and credentials to your site
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator@abe, can you take a look at this? Its throwing a parse error for single-portfolio.php, but the file looks fine. I even uploaded a copy that I know works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 07:06 in reply to: Full-width template page with just menus and no margins #37281sharmstr
ModeratorTheme options – Layout Settings
– Site layout wide
– Main layout 1 column
– Page title location Main section
– Quick css, add the followingCOPY CODE.container { max-width: 100%; }
If you want to hide the title, add this as well
COPY CODEh1.page-title { display: none; }
Theme options – Header Options
– Show breadcrumb off
– Main menu info blankThat should get you close. Report back with anything else.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNo problem. 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorSo, lets see if its actually a kleo issue. Enable the wordpress 2014 theme and try to log in. If it still happens then its not anything kleo related.
To answer your question about login redirect, kleo has an option in Theme options – Miscellaneous
Also, not sure if this will matter, but do you have Profile Syncing turned on in Settings – Buddypress – Settings?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI had no problem installing the plugins. Maybe there was an issue with your host when you were trying it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHmmm. I’m not sure what’s going on. Every portfolio page is throwing a 500 internal server error. I’ve tried disabling all plugins and even deleted and reinstalled Kleo. Can you enable debug mode so we can see what’s causing the 500 error?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator@roderswiss – please only report your issue once. respond privately with credentials and a link to your site so we can see what’s going on.
@frank – Can you also respond privately with a link an credentials?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator1 – Add this css to your child theme
COPY CODE.offcanvas-type-default .offcanvas-sidebar { background: #ffffff; } .offcanvas-sidebar { width: 400px; }
2 – Please search. Its been answered several times.
3 – That’s a bit of a pain in the rear because of the way the +- works. Maybe the Kleo team has an easy solution for you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIf you want this one http://seventhqueen.com/themes/kleo/portfolio/hosted-video-full-width/
– Add new portfolio item
– click on Backend Editor
– click on Embed Vimeo Full Width
– delete the text box that has “Embed Vimeo Full Width”
– delete the text box that has “I am a text block”
– delete the empty column that’s left over
– delete the 20px gap
– edit the video player and supply the link to the video
– click on the pencil to edit the video row and set background style to default AND top padding to 0
– set the post layout to Full width, no sidebar
– scroll down and set Show media on single to: No
– set media type to oEmbed Video and put in the link to the video
– set top bar status to whatever you want
– set a custom logo if you want
– check Transparent main menu
– check Hide title
– set Breadcrumb to hidden
– check Hide informationIf you still cant sort it out, send us a link to the page so we can see what the issue is
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorrespond privately with credentials. I went to your site and the theme is installed.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorMy guess is that it has something to do with the fact that your main site starts with www, but your login redirect doesn’t. You’re even throwing cross domain errors. Check your setup and make sure that both your wordpress address and your site address either start with www or dont.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe clue is the mfp-hide css class. That tells the page to hide the div unless its supposed to be displayed when you click login (or something similar). Its not being hidden because your page isn’t loading /kleo/assets/js/plugins/magnific-popup/magnific.css which has
COPY CODE.mfp-hide { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorrespond privately with a link and credentials.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAlso, looking at V2.2 image, that’s not from Kleo. Kleo doesnt have Project Types and Project Tags for portfolios. Do you have another plugin that created that?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou shouldn’t have 2 menus in V2.2 Looks like you changed your portfolio name to projects? In any case, did you resave your permalinks? wp admin – settings – permalinks – dont change anything, just click save.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI havent even looked at that yet. Open a new topic and I’ll have a look at it soon. Its time to watch some football. 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 30, 2014 at 21:05 in reply to: bp activity loader plugin install needs container info to work #37163sharmstr
ModeratorYou changed it wrong. Look at my code again. I dont have ‘#’s. “#” are for IDs. “.” are for css classes.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorA few things
Giving us the link without telling us what its supposed to look like doesnt help us help you 🙂 We have no idea what we are supposed to be seeing.
In almost every case, this points to a cache issue. Either a caching plugin, caching on your host or your browser cache.
Also, I strongly suggest that you use your child theme. You can switch to it without losing your changes by exporting your settings (theme options export) while the main kleo theme is enabled, then enable your child theme and import.
Try that and let me know if that helps. If not, respond privately with temporary credentials and I’ll be happy to take a look for you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThen maybe its plugin conflict. Like I said, it worked for me.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNeither. You need more MEMORY. http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorCache? I said permalinks wp admin – settings – permalinks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhen I add it using css inspector, it doesnt work right away. It works after I resize the window.
But if I add it to my child css and reload, then it works right away.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorgive me your css
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 30, 2014 at 20:20 in reply to: bp activity loader plugin install needs container info to work #37149sharmstr
ModeratorWhy are you putting .addClass(‘activity’)? Looking at the code you provided, you shouldn’t change that part. It should stay .addClass(‘loading’); Looks like you need to change 3 lines, not just one.
line 52
COPY CODEjq(".activity li.load-more").addClass('loading');
line 71
COPY CODEjq(".activity li.load-more").removeClass('loading');//Theme authors, you may need to change #content to the id of your container here, too.
line 79
COPY CODEjq(".activity ul.activity-list").append(response.contents);
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m not sure I completely understand, but you can try adding the following css to your home page
Bring up your homepage in VC.
Click on the gear icon to add css to that page (see image)
Add this and saveCOPY CODE.item-desc { display: none; } .update { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files. -
AuthorPosts