Forum Replies Created
-
Author
-
December 22, 2015 at 21:22 in reply to: Mobile – Nav Not showing and Visual Editor Not Populating #94949
sharmstr
ModeratorI’m not seeing any issues with iPhone 6 and Galaxy 6. Perhaps you had connectivity issues from your phone and the required jquery scripts weren’t loading.
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.sharmstr
Moderatormoving because this isnt a bug
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
ModeratorIncrease your memory. As the Kleo docs indicate, you need at least 128M and probably 256M. At present, according to the error, you have the default 64M.
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 can do that, but it will be overwritten with every update.
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
ModeratorYep. Known issue: https://archived.seventhqueen.com/forums/topic/product-descriptions-not-displaying-properly#post-91521
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. You should ask the rtMedia guys first. At least that’s what I would do.
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 only have to click once if you click in the correct spot. This is usually not an issue, but in your case it is because your portfolio items are so small. The only thing that’s not linked is the excerpt, but again, because your items are so small, the excerpt takes up almost half of the item.
Copy /kleo/page-parts/portfolio-masonry.php to your child theme /kleo-child/page-parts/portfolio-masonry.php and change this line (near the bottom)
COPY CODE<?php echo kleo_excerpt( 60, false ); ?>
to this
COPY CODE<a href="<?php the_permalink();?>"><?php echo kleo_excerpt( 60, false ); ?></a>
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 specifically referring to Kleo, then it hasn’t been translated to Italian yet. If you’d like to contribute an Italian translation, you can do so here: https://archived.seventhqueen.com/forums/topic/tranlation-contribution-for-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
ModeratorDo me a favor and see if it works with the WP 2015 Theme enabled. If you dont see it, then you’ll have to ask rtMedia to add that feature. The buddypress guys will tell you to take a hike 🙂 Now, if you do see it with the WP 2015 Theme enabled, let me know.
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
ModeratorBecause those arent controlled by rtMedia.
To see what I mean, you can disable rtMedia. You’ll still be able to upload a cover and profile image.
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
ModeratorPost size and upload size probably arent the issue. The issue is probably allocated memory size. Put this in wp-config.php
COPY CODEdefine( 'WP_MEMORY_LIMIT', '256M' );
If that doesnt work, check your server error logs for the cause of 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
December 22, 2015 at 17:21 in reply to: how can I manage the hearder and footer design of buddypress pages? #94891sharmstr
ModeratorYou can change the menu and the footer content with the plugins I’ve linked you to. To have completely different layouts depending on a guest or logged in user, you would have to custom code that. If you want help with this, you can ask for a quote by contacting dev@seventhqueen.com.
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 22, 2015 at 17:02 in reply to: how can I manage the hearder and footer design of buddypress pages? #94885sharmstr
ModeratorHiding the footer works on buddypress pages like activity and groups, but not on member profile pages because they arent actually pages. They are created in the backend using templates. However, you can use css to hide the footer on the profiles.
.bp-user #footer {
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
sharmstr
ModeratorSince you have it in buddyapp-child the changes wont be lost when you update Buddyapp. Buddyapp updates only change files in /themes/buddyapp, not /themes/buddyapp-child. That’s the whole point of using a child theme 🙂
With that said, you should NOT put buddypress.php into your child theme. There are way too many functions in there and you’ll end up screwing up your site.
To change the h1 to h2 in the bp titles, put this in your child theme’s functions.php file
COPY CODEadd_action( 'bp_init', 'change_bp_titles' ); function change_bp_titles(){ remove_action('bp_before_member_body', 'kleo_bp_member_title', 1); add_action('bp_before_member_body', 'custom_bp_member_title', 1); remove_action('bp_before_group_body', 'kleo_bp_group_title', 1); add_action('bp_before_group_body', 'custom_bp_group_title', 1); } function custom_bp_member_title() { ?> <div class="bp-title-section"> <h2 class="bp-page-title"><?php echo ucfirst(bp_current_component());?></h2> <?php kleo_breadcrumb( array( 'container' => 'ol', 'separator' => '', 'show_browse' => false ) ); ?> </div> <?php } function custom_bp_group_title() { ?> <div class="bp-title-section"> <h2 class="bp-page-title"><?php echo ucwords(str_replace('-', ' ', bp_current_action()));?></h2> <?php kleo_breadcrumb( array( 'container' => 'ol', 'separator' => '', 'show_browse' => false ) ); ?> </div> <?php }
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 22, 2015 at 16:42 in reply to: how can I manage the hearder and footer design of buddypress pages? #94876sharmstr
ModeratorYou can use the following plugins to hide/show menu items and widgets based on the users logged in status.
https://wordpress.org/plugins/dynamic-widgets/
https://wordpress.org/plugins/menu-items-visibility-control/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 code I gave you was to fix the My Account avatar in the menu. Obviously you need more than that because the avatar isnt showing up anywhere. They are doing their own filtering on the avatar. Can you do a test and see if the avatar shows up with the WP 2015 Theme enabled?
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 22, 2015 at 15:48 in reply to: Can I Change the Buddypress Default Tab to Profile (and not Activity) #94860sharmstr
ModeratorAwesome.
moving because this isnt a bug
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 installed that plugin
Created a new CPT called movies
Added a new movie called “My First Movie”
Created a new page and added the search form shortcode
Switched to classic mode and change the search content to movie
Saved the page and searched ‘first’
It worked without issue.Keep in mind, once you click “view all results”, you will be taken to the WP search results page that shows posts and pages as well. The shortcode search context setting is only for the ajax results, not WP results.
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.sharmstr
Moderator1 – try this in your quick css. change the color to whatever you want
COPY CODE.status-closed .bbp-reply-content > p { color: #000 !important; }
2 – There’s a sticky topic on this: https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status
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
ModeratorFreeing up space will not solve the issue. You need more memory. Its also worrisome that godaddy couldnt figure this out. It was in the error logs that I was asking for since the very start 🙂
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 22, 2015 at 15:16 in reply to: Can I Change the Buddypress Default Tab to Profile (and not Activity) #94849sharmstr
ModeratorInstead of putting it in bp-custom.php, try it in your child theme’s functions.php file.
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 an animated number counter, not a date counter. There are many plugins out there that will do this.
https://wordpress.org/plugins/tags/countdown
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
ModeratorRefer to this and see if it solves your issue: https://archived.seventhqueen.com/forums/topic/fonts-not-changing#post-92002
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
ModeratorAt the bottom
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 can use this css
COPY CODE.home-page { background-color: red !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
ModeratorThat demo page has a custom logo set. Bring up the page in the editor, scroll down to Theme General Settings and delete the custom logo.
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 finally writting errors to the log file. It could just be that its not Spam Shield, but its too many plugins and you’re running out of memory
[22-Dec-2015 12:54:05 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65552 bytes) in /home/content/p3pnexwpnas09_data01/41/2617541/html/wp-includes/shortcodes.php on line 351
I changed your wp-config.php file so that wp will use 256M of memory instead of 128M, but its not working. Probably because Godaddy doesnt allocate that much to you. Go back to them, give them the error above and ask them to increase your memory.
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
ModeratorFrom the spam shield FAQ http://www.redsandmarketing.com/plugins/wp-spamshield/troubleshooting-guide/
“Are you using free (or ultra-cheap) web hosting? If so, this may be the root of your issue because free hosts often disable certain hosting features that WordPress and plugins need to use. We don’t recommend using free web hosting. Paid web hosting plans generally offer much better performance and features anyway. (If you’re on a free or ultra-cheap web host, and you get a 500 error, it may be because you may not be allowed to use .htaccess files on your site, so please check this with your web host.)”
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 your spam shield plugin. I deactivated for a quick test and the portfolio loaded fine.
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
Moderatormoving because this isnt a bug.
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
ModeratorTry this
COPY CODE.social-header.header-color { padding-top: 10px; padding-bottom: 10px; }
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 a look at this: http://sharmstr.com/saving-importing-and-exporting-kleo-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
ModeratorThat’s not possible without custom code. If you’d like to get a quote on that work, please contact dev@seventhqueen.com
You also might want to do a quick search on the buddypres and rtmedia forums. Perhaps someone has sorted that out before.
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 have no idea. But it is an issue.
How can I view your server error logs?
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 aren’t running the Kleo child theme. Anything I change now will be removed when you update.
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’d have to rewrite the whole function to include a link to the page and to send to someone 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
ModeratorHere’s their documentation: http://www.themepunch.com/revslider-doc/welcome-slider-revolution/
Or alternatively, download their demos and import the youtube one so you can see how they did it: https://archived.seventhqueen.com/documentation/kleo#revslider
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 22, 2015 at 00:23 in reply to: Video image slider and sound don't show on the post' header #94736sharmstr
ModeratorDisplay media on post page.
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 restore? All you had to do is remove the code you added.
Also, be sure to download the file before copying the code within it. Most browsers will screw up the single quotes (‘).
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
ModeratorIn your child theme’s functions.php file.
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