Forum Replies Created
-
Author
-
sharmstr
ModeratorI think they are saving because the request is t=0 which I assume is time=0
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
ModeratorRight, but the problem isnt that its making the current=x request. The problem is that its continuously making the t=0 request.
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
ModeratorSorry? No problem at all.
There’s so many damn 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
ModeratorIts not happening on my site, so its hard to figure out what’s causing 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
ModeratorDo you have it turned on for groups in rtMedia?
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 – Its not working though. Read this: https://archived.seventhqueen.com/forums/topic/kleo-admin-ajax-php-cpu-and-memory-load#post-34183
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’re adding it via a visual composer, you need to set the form style to transparent.
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 5, 2014 at 17:30 in reply to: How to change Text, Stats and Background of the "Home Pintrest New Page"? #34199sharmstr
ModeratorFirst, you have to been in the ‘backend editor’ so you see the gui for visual composer.
background is set in row settings (pencil icon for the row above the title).
The title and animated numbers are set using a text filed. They dont really show up in the visual composer gui because the text is set to white, but they are there. Just hover your mouse over the columns and a green option box will come up. Click the pencil.
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
ModeratorHave you check to see if admin-ajax.php?action=kleo_bp_notifications_refresh&t=0 is successful? Maybe its rerunning because its encountering an error?
Just had an idea. What page were you on when those performance reports were generated? All I can see is the hostname, but not the actual page that it was called from. Also, can you show the ip address that the request was coming from? You never answered my ‘how many users’ question, so I’m trying to figure out if 1 – its only happening in certain areas and 2 – if all of those are from one user.
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, there is a difference between
admin-ajax.php?action=kleo_bp_notifications_refresh&t=0
and
admin-ajax.php?action=kleo_bp_notifications_refresh¤t=x
The first one tells it to set the time between checks. The t=0 is correct because you set it to zero. If you check now, it probably says t=6000.
The second one is the actual call to fetch the notifications (the current flag is the amount of notifications it returned during the previous call). If you look at your previous logs, you wont see the second one at all (it never fetched the notifications). That’s because you had the time interval set to 0.
So, if we were to stop there, the interval is actually being set correctly and working as it should. The issue is that it keeps setting the interval. Changing the interval time has no effect on when the set interval call is made (from testing on my site), only on the fetch notification call. What we need to figure out is why the set interval call is being triggered so many times.
Does that make sense?
Still waiting for abe to comment on this. In the meantime I’ll walk through the code.
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… with that said, if there’s no way to do it directly with PMPro, you could probably do it in the buddypress code by comparing the logged in user membership level to the level that can access.
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
ModeratorSorry, I dont use PMPro so I dont know anything about 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
ModeratorThat’s awesome and very clever. Regarding having users set colors and styles, I’m working on something similar today, but it will be injecting those setting into Visual Composer code since I wanted something more than a vanilla WP page. Basically I designed the page using VC then copied the VC code into my template page which runs the code via the do_shortcode call. You can change the code dynamically by injecting the user settings into the code
basic example showing the $user_set_color being injected into the shortcode.
COPY CODEdo_shortcode('[vc_row inner_container="yes" text_color="' . $user_set_color . '" section_type="main" bg_position="top" bg_position_horizontal="left" bg_repeat="no-repeat" bg_cover="true" bg_attachment="false" parallax_speed="0.1" padding_top="40" padding_bottom="40" min_height="0" border="bottom" css_animation="right-to-left"][vc_column width="1/1"][kleo_icon icon="android" icon_size="4x" tooltip_position="left" tooltip_action="hover" target="_self"][/vc_column][/vc_row])'
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 just set mine to 0 and and it doesnt make any calls at all. I’m not sure why yours is. Can you try setting it to 6000 in theme options and see if that slows it down to 1 minute?
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
ModeratorOkay, I just looked at it closer and that’s not the actual call to get the notification. The action=kleo_bp_notifications_refresh is telling it how often to check. The t=0 means never. I dont see a column in your report showing the ip that’s requesting the call. How many users do you have? I’m not sure if that call is made on every page load or not. I’ll have to do some checking.
@abe – can you comment on 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
Moderatorbtw – you said you set it to 2000000 which is 33 mins. According to your logs its running every 20 seconds so even if you *think* that’s what made it better, it really didnt because its clearly not running every 33 mins. What ‘sq_option(‘bp_notif_interval’, 20000);’ does is sets it to 2000 if it CANT find the ‘bp-notif-interval’ value in the database. But since its in the database, it uses the value set in theme options. So, again, you need to change it in theme options.
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
Moderatortheme options -> buddypress. Set notification to 0 to turn them off.
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
Moderatorapp.js isnt being loaded anymore, the minified version is so you didnt actually change anything. But you dont have to change it there, you can set it in Theme Options.
I discussed my way of approaching what to set this value to in a topic when they released live notification. The default is 20 secs. Do people on your site really need to know that quickly? Look at your usage stats for the average time someone spends on a page. If it only a minute than do you even need live notification? The notification gets checked on page load, so it will fire every time someone navigates to a new page. If they are spending 5 mins on a page, then maybe set it to fire every 60 or 90 seconds. The only page that people will probably spend more time on is the activity page or if someone walks away from their computer. I would like to be able to set it to only fire x amount of times after each page load. That would take care of someone leaving the page open for hours.
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
ModeratorTurn off breadcrumbs and delete info in main info. Then move titles to main section *there’s a button for that, you dont actually have to ‘move’ them 🙂
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
ModeratorAppearance -> Menus. If you dont see Kleo listed on the left, then click screen options in the upper right and enable 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
ModeratorDo you have ‘anyone can register’ set in WP Admin -> Settings -> General?
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
ModeratorRestore from backup? The good news that all the Theme options settings are saved to the db. The only thing you’ll lose if you cant recover from a backup is any customization you made to the files or in style.css. Hopefully you’re not like me with 70 customized files, and over 1000 lines of code in my functions file.
My eyes are nearly bleeding now, so I’m going to sign off. Please report back on your progress. Again… good luck.
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
Moderatorooooh. I tried that but didnt put the 1px in the box. Awesome.
Please mark resolved.
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 I’m understanding this correctly, you can now get into the admin, just not the plugin page, right? If that’s the case, see if you can get into wp-admin/update-core.php If so, you should be able to update kleo from there.
But even with Kleo updated, I think you’ll still get the error on the plugins page because VC isn’t updated. So, try this.
Ftp to you server and go to /plugins/js_composer/changes.txt. At the top of that file, it will tell you which version of visual composer you are running. If its less than 4.3.4 then we need to update it. You can do it similar to the kleo update instructions above except you dont have to save the old version first.
– Extract js_composer.zip that you have downloaded from Themeforest. Delete on your server all files inside wp-content/plugins/js_composer and then copy all files inside “js_composer” folder to your server in wp-content/plugins/js_composer. ** Note, when you extract js_composer, you’ll actually end up with /js_composer/js_composer/*all of the files*. Notice the double js_composer folders. Make sure you dont end up with js_composer/js_composer/ on your server. Hope that makes sense.
What I believe will happen here is that once VC is updated, k-elements wont barf and you’ll be able to access your plugins page again… again, regardless of the kleo update.
I’ve been at this for 15 hours straight so if anything doesn’t make sense, please ask. I’m a bit brain dead and might not have explained it well. GOOD LUCK! 🙂
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 just played with the border settings for row and column and couldnt get it to display as I would expect. So try this instead. Go into the column setting for the column on the left and add a Extra class name called column-border-right.
Then add the following css to the page settings (gear icon top right of vc form)
COPY CODE.column-border-right { border-right: 1px solid; }
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
ModeratorDid you also update Visual Composer to 4.3.4? If not, its in the kleo download starting with 2.0
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*remove, not remember. :/ I need a nap.
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 to keep the breadcrumb and just remember the phone number bit, delete it out of
theme options -> buddyrpess -> main menu info
and
theme options -> header -> main menu infoHi 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. Please mark resolved.
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 working blindly here, so forgive me if I’m way off base. I looked at your page source code and it looks like you’re using Child Pages Shortcodes, so I installed it. I created a Members page and put the child page shortcode into that. Then I created 3 member pages and set them to children of the Members page. In each of those children pages I set a featured image. All three of the child pages showed their featured image on the member listing page.
But, when I went into the individual child page, the featured image did NOT show up at the top of the page. I cant say for sure if they used to before, I’ll just say that I know how to fix it…. Copy /kleo/content-page.php to your child theme (you are using a child theme, right?). Near the bottom around line 103 you’ll see ‘the_content’. Above that line, add the following
COPY CODE<?php the_post_thumbnail(); ?>
So, to summarize.
1 – Not sure why your featured images are not showing up using the child pages shortcode. It worked for me. Maybe try resaving those pages. And make sure you’re running k-elements 2.1.1 (you can get it here: https://archived.seventhqueen.com/forums/topic/fatal-error-message#post-32651)
2 – Not sure if the featured image ever showed up on the top of pages like they do in posts using the Kleo theme, but adding the code I gave you will fix it.
Let me know if any of this works or not 🙂
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
ModeratorCan you explain how you’ve set these up? How is http://jamrockpeeps.com/me/ generating all of the member boxes?
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
ModeratorThere’s not. I gave out my info before on here and got a terrible from someone so I dont do it anymore.
Did you try resaving the 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
ModeratorCan you try resaving your permalinks? You dont have to edit them, just open wp admin -> settings -> permalinks and click save. Thats fixed several of my issues on more than one occasion. Let me know if that works.
I actually looked at your site when you first posted this, but I couldnt figure out what was going on. I’d need access to the admin to poke around. But since I dont work 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
ModeratorThat’s not the only thing in there 😀 *hive five*
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
ModeratorThat depends. Do you want just the title turned off or do you want the breadcrumbs to be off as well? Do you still want a title, just not in the gray bar?
All those can be set in WP Admin -> Theme Options (layout and header)
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 turn those off on in the page editor under Theme General Settings in the Title Section tab.
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 4, 2014 at 16:57 in reply to: how to put text here http://screencast.com/t/r7AGH5R1zKV #33995sharmstr
ModeratorCan you explain what you mean? Do you want placeholder text or are you saying that its not working?
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
ModeratorPlease mark resolved.
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
ModeratorOkay. Glad you sorted 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
ModeratorSo, in your pages list, you have a Home page and a Blog page, but those pages dont show up in the dropdowns for “Front Page” and “Posts Page”?
The only reasons why they wouldn’t show up is if those pages are set to “draft” or “pending review”.
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
-
AuthorPosts