Forum Replies Created

Viewing 40 posts - 81 through 120 (of 158 total)
  • Author
  • in reply to: Oh my Gosh, not another kleo_somewhere question #70052
     mitchcan
    Participant

    Here’s all I could find. I went through page-parts and other places looking for others. Am I missing any?

    kleo_before_main — above content incl SB, below header/menu (above breadcrumb if apply)

    kleo_before_content — adds sidebar-like column to the left of main-content (hmm?)

    kleo_before_main_content — above the main content only, not SB (incl above page title if apply)

    kleo_after_main_content — below the main content only, not SB

    kleo_after_content — adds sidebar-like column to the right of main-content (hmm?)

    kleo_after_main — below content incl SB, above footer

    I’m curious on the kleo_before_content and kleo_after_content … is this the intended functionality for those?

    I now have a nice, neat list. πŸ™‚ Please LMK if there are others.

    Thanks.

    in reply to: Oh my Gosh, not another kleo_somewhere question #70044
     mitchcan
    Participant

    hey, I think I found it in going through old code.

    kleo_before_main right?

    sheeesh all the names got me a little confuddled. Please LMK if I am missing any others, but I’ll work with what I gots until then. πŸ™‚

    Thanks.

     mitchcan
    Participant

    It’s funny, but it NEVER even occurred to me to even remotely consider using is_home() when I was specifically trying to NOT place it on the “home” page. I was fixated on page id 122731 (which is the id of the page that I set as Posts in /reading) as the way to get the slider on the blog posts page. Ooops. πŸ™‚

    Thanks again!

     mitchcan
    Participant

    OK, first, that’s hilarious. This entire time I’ve been specifically trying NOT to place it on home, thinking home meant, well, you know, Home (as in Front Page) vs Posts. In my last theme, I didn’t mess with the reading settings, it was built to overtake the Your Latest Posts setting. So I missed that info. Thanks.

    But back to the strategy of placing it via the widgets setup.

    My rationale, possibly flawed as usual, πŸ™‚ was that I often use multiple widgets in each of the widget ‘areas’ I created in kleo_before_content, kleo_before_main etc, then I use Dynamic Widgets plugin to determine the display of each widget.

    In using the Rev Slider php directly, I don’t want to lose the ability to still use that widget ‘area.’

    I’m no php guy, but can I still make that happen by doing something like

    COPY CODE
    add_action('kleo_before_main_content','kleo_top_main_content');
    function kleo_top_main_content() {
        if (is_home()) {
            echo '<div id="before-main-content">', putRevSlider( "featured-posts" ), '</div>';
    }
    else 
    {
    echo '<div id="before-main-content">', do_shortcode('[widgets_on_pages id="wop-3"]'), '</div>';  //could put shortcode here
       }
    } 

    I have no clue if that is structurally correct, but conceptually, would something like that work to allow me to still have the ‘wop-3’ widget area functional?

    Thanks for setting me straight on some of the usage here.

    Have a great weekend!

    in reply to: Widget area under post #69749
     mitchcan
    Participant

    A) Thanks… I looked for something like that, just missed it.

    B) uh, suh-weeet. But holy carp, there goes a couple hours I know I’ll spend just randomly rummaging through all those snippets. LOL πŸ™‚

    in reply to: Kleo home display header/logo/nav acting wonky #69733
     mitchcan
    Participant

    I hear you. I’m fanatical about site speed, mainly because I know our site is so ‘heavy’ (LOTS of plugins) to begin with. So I tend to overcompensate by trying lots of things to make it better. I messed with some of the wp.org repository plugins for cache and minify, without much success.

    I will tell you, although somewhat of a hassle to mess with, one of the very best (free, simple) things I added for limiting requests and conflicts (through selective load) and thereby speeding up things somewhat, was a plugin called Plugin Organizer.

    Hosting has helped some too with server side cache, so no need for cache plugins.

    But never an easy, good, simple, and inexpensive solution. Oh well. πŸ™‚

    Thanks again for your guidance. Things *seem* to be working since I turned off Rocket Load. We’ll keep an eye on it.

    Have a great day!

    in reply to: Kleo home display header/logo/nav acting wonky #69730
     mitchcan
    Participant

    Thanks for the guidance. I was looking for errors in the console, and I saw a reference to cloudflare, so I’ve been looking there too.

    I do have auto minify set at Cloudflare, and I was looking into conflicts, but it says:

    Auto Minify should not break third-party scripts. If you are seeing third-party scripts breaking on your site (Google, widgets, plugins), then Rocket Loader is most likely the cause of any errors you’re seeing.

    I do also have Rocket Loader active. It states:

    Rocket Loader improves page load times by:
    Decreasing the number of network requests by bundling JavaScript files, even third party resources, to avoid slowing down page rendering
    Asynchronously loading scripts, including third party scripts, so that they do not block the content of your page from loading immediately
    Caching scripts locally (using LocalStorage, available on most browsers and smart phones) so they aren’t refetched unless necessary

    I have it set to Auto – which loads on all scripts. In researching, I can turn off selectively:

    You can have Rocket Loader ignore individual scripts by adding the data-cfasync=”false” attribute to the relevant script tag, for example: <script data-cfasync=”false” src=”/javascript.js”></script>

    I’m still working through all the details. I’m not really sure how I’d go about modifying implementation, or if I would realize any site/speed degradation by turning it off completely.

    Hmmmm.

    in reply to: Child theme acting really childish #69491
     mitchcan
    Participant

    Yeah, I thought I had checked and compared code in those 10 or so files, but it was 4AM, and, well, I missed one. Some idiot had tried to comment out some code for some unknown reason in a random single line in one of the page-parts files. At this point, I can’t even figure out what he was trying to accomplish.

    Oh well, I’d fire the guy for the late night grief the error caused me, but I don’t really feel like replacing myself. πŸ™‚

    Thanks, and have a great day!

    in reply to: adding content in template areas #68769
     mitchcan
    Participant

    As usual πŸ™‚ I stand corrected.

    I had placed:

    before_main
    before_content
    after_main

    in a custom functions. But in simple confusion over names looks like I had neglected ‘before_main_content’. What I was seeing on the page was content in the ‘before_content’. My bad.

    Added and resolved. Thanks as always for making me rethink what the heck I’m doing. Have a great weekend!

    in reply to: CPT Featured image in BuddyPress #63803
     mitchcan
    Participant

    I will ask around, thanks.

    I’m digging into the database now, looking for what gets sent with the CPT. Your screenshot triggered the thought to do that. Thanks for that.

    in reply to: CPT Featured image in BuddyPress #63799
     mitchcan
    Participant

    Thanks @sharmstr, I only asked here first because 1) I wasn’t sure if it had anything to do with the theme and it’s display of images, and 2) because I knew I would get a timely reply here. πŸ™‚

    Interestingly, the CPT UI plugin I am using provides for a Featured Image option, and I DO have it selected (which is why I have the FtImg metabox on the CPT). It must be something that is not sending that info through somehow. I’ll keep digging around.

    Thanks as always for your knowledge and responsiveness.

    in reply to: 3.0.1 Fatal error: Allowed memory size #62979
     mitchcan
    Participant

    Oh, OK, will do once we’re back online. Thanks.

    in reply to: 3.0.1 Fatal error: Allowed memory size #62975
     mitchcan
    Participant

    I have 3.0.1 from the zip file you posted this weekend.

    in reply to: 3.0.1 Fatal error: Allowed memory size #62970
     mitchcan
    Participant

    I only get the error on the pages associated with Kleo Theme Options.

    I am in the middle of a host/server change, as soon as that is propagated, I will try again and report back.

    Thanks.

    in reply to: 3.0.1 Fatal error: Allowed memory size #62808
     mitchcan
    Participant

    Thanks for the plugin. Interesting.

    I’m pretty sure I did the memory settings correctly.

    Here’s the data (from the plugin):

    PHP Version : 5.3.29 / 64Bit OS
    Memory limit : 512 MB
    Memory usage : 250.53 MB
    49%

    This seems to only be happening when I have Kleo active and only when I try to make any changes to any of the Theme Options settings.

    in reply to: Theme Options Leads to WSOD #62577
     mitchcan
    Participant

    Thanks @Abe, I grabbed files from codecanyon a bit ago, uploaded via ftp, and they look to still be 3.0. I see your changelog is updated to show 3.0.1, I guess it might be a bit before the new files hit codecanyon? I’ll look for them again in a while.

    Thanks for your work on this. You guys are great.

     mitchcan
    Participant

    Hi Abe,

    That worked, thanks!

    in reply to: Theme Options Leads to WSOD #62412
     mitchcan
    Participant

    Just doubled checked, they are working now. Sorry for the error. Thanks for taking a look at this.

    in reply to: Theme Options Leads to WSOD #62387
     mitchcan
    Participant

    I needed to get started on the server migration. But since it is a copy to another server, the access info I provided will still work. Whatever you figure out is wrong can then also be made to the new server as needed.

    Please let me know what you figure out so I can access Theme Options changes.

    Thanks.

    in reply to: Theme Options Leads to WSOD #62237
     mitchcan
    Participant
    This reply has been set as private.
    in reply to: Theme Options Leads to WSOD #62124
     mitchcan
    Participant
    This reply has been set as private.
    in reply to: Theme Options Leads to WSOD #62111
     mitchcan
    Participant

    Hi Laura,

    Debug enabled. Yes, I see an entire page of text. Not the normal debug messages that I see on top of an admin page, but an entire page of text with no admin screens at all.

    Now what?

    in reply to: Like Button for Activity Stream #59784
     mitchcan
    Participant

    This is an important consideration… while BuddyPress Like DOES actually function, where it has a major issue is that it does NOT respect the privacy aspect of the Group. Meaning a ‘Like’ in a Private group is shared in the Site-wide activity stream, and the associated post/update is able to be seen by all users, even if they are not entitled to participate in that Private Group.

    I’ve reported this to the dev, and others have confirmed the issue as well, but the dev seems uninterested in addressing the issue.

    Just something to be aware of it you bake this into Kleo — the relationship of the Like action and the Privacy of group membership really needs to be taken into consideration.

    Hope you add this. Thanks.

    in reply to: search box placeholder #58086
     mitchcan
    Participant

    Hi @Radu

    I wanted to pass along that this worked great. All it needed was the placeholder added to line 16 in bbpress in the child theme, easy stuff. Thanks!

    in reply to: Login by email or Username #57311
     mitchcan
    Participant

    Hey @sharmstr — just a quick note of thanks. I was looking for a way to do this on kleo popup modals. Have a plugin that does this with the other theme, but needed this.

    It works great. Thank you.

    in reply to: KLEO – Features Requests #57069
     mitchcan
    Participant

    I would just echo @Splendor. @hoops, there are a bunch of good ads plugins – I’ve used AdRotate for years. PLEASE do not add more weight/issues/complexity/bloat to the theme. Features like that are plugin territory.

    Just my two cents. Thanks.

    in reply to: Remove PMP roles from BuddyPress members page #54672
     mitchcan
    Participant

    You know, I should probably show the code I was using… that might be helpful. πŸ™‚

    COPY CODE
    /*
     * Hide certain membership levels in BuddyPress directory
     */
    function my_bp_has_members($has_members, $members_template) {
    
        global $members_template;
    
        //pmpro membership levels to hide
        $levels = array(1,2,3);
    
        //get list of members
        $members = $members_template->members;
    
        foreach($members as $key=>$member) {
            if(pmpro_hasMembershipLevel($levels, $member->id))
                unset($members_template->members[$key]);
        }
        return $has_members;
    }
    add_filter('bp_has_members', 'my_bp_has_members', 10, 2);
    
    in reply to: BuddyPress Profile notifications tab throwing error #54654
     mitchcan
    Participant

    Happy to help. It was driving me crazy too, so I know your pain. Good luck!

    in reply to: BuddyPress Profile notifications tab throwing error #54494
     mitchcan
    Participant

    @gregkamphuis@hotmail.com

    Hmmm, I tried so many fixes, I’m not sure if I recall the exact one that worked. πŸ™‚

    If I’m not mistaken, my issue ultimately had something to do with using “Live Notifications” and my specific plugin stack. I have removed that feature from my menus, made also sure that BP was active on any pages that had BP-related menu items, and I haven’t seen a reoccurrence of the issue.

    If I think of anything else, I’ll jump back in, but hope that helps trigger some options for you.

    Good luck.

    in reply to: Best Way to Message All Members #54255
     mitchcan
    Participant

    Excellent, hadn’t seen that one, I’ll look to test it too. Thanks.

    Didn’t know Kamal was not there, ooops. Oh well, as long as YOU’RE still there, everything will be fine. πŸ™‚

    in reply to: Best Way to Message All Members #54252
     mitchcan
    Participant

    I think there is a distinction between ‘message’ and ’email’ – the OP asked about ‘messaging,’ which is doable in the system as @alvedon mentioned, and I am currently testing a plugin that does Mass Messaging. It’s outdated and unsupported (always makes me nervous) but it still works.

    But I’d like to hear the plugin that @kamal is referencing, which he said does “mass email to all members” – that would be helpful for some things we are doing. A ‘message’ to the site that is then auto forwarded to the member email would be great, if such a feature exists.

    Thanks!

    in reply to: BuddyPress Cover for Groups #53995
     mitchcan
    Participant

    Hey again… so @sharmstr ( or maybe @Abe ) a question, if I may…

    Just for giggles, lets say I wanted to change the upload size limitation for the group avatar, currently set at 150×150 (pre-radius). Then maybe change the img.avatar.group css or whatever I figure out through trial and error (and error and error). πŸ™‚

    That would (?) allow for a Group header image to be a little larger.

    If I was so inclined, where would I find the ability to change the limit on the group image upload sizes? πŸ™‚

    Thanks.

    in reply to: KLEO – Features Requests #53992
     mitchcan
    Participant

    ((Moving to here, previously posted in wrong place – sorry.))

    I know it’s been mentioned here and on the WP repo for the (kleo) buddypress cover plugin, I’d like to just add a +1 to getting it to work with Groups. The only reason I am using the other bp cover plugin is that it allows Group covers. I’d like to use the one meant for this theme, but since Groups is a huge part of what we do, we are using the other for now.

    Any update on an ETA?

    Thanks. πŸ™‚

    in reply to: BuddyPress Cover for Groups #53991
     mitchcan
    Participant

    Great point(s). My bad. I’ll do that.

    Thanks, and have an great weekend!

    in reply to: buddypress page title #53755
     mitchcan
    Participant

    * note, when I say nowhere in Localization – I mean nowhere in a scan/edit of the buddypress files (and I scanned Kleo theme files too) via the Localization plugin.

    in reply to: buddypress page title #53753
     mitchcan
    Participant

    OK, so thanks for that. Localization was pretty cool. Had never worked in that or .po .mo files. I also downloaded PoEdit and messed with that some too.

    That said, all the new fun aside, nothing worked to resolve this issue. Maybe I was looking for it wrong, I don’t know. But nowhere (in Localization) were the words “User Group” found where I could translate it to “Neighborhood” (Directory). (Well, I take that back, eventually I did find it manually in two places in the .pot file, but even changing those (in the core files) did not work. (I’ll change them back).

    I even went through about 50 buddypress files to manually search for the words with no luck.

    It has surpassed the time value relationship to make this change, but it now comes down to the principle of not letting ‘it’ win. πŸ™‚

    Any guidance gladly accepted.

    in reply to: Group pages layout #50788
     mitchcan
    Participant

    Thanks, I’ll go see what I can get accomplished with this. I don’t understand much of it, but I’m not afraid of some trial and error (and error and error). πŸ™‚

    If I can’t get it figured out, I’ll come back and visit…

    in reply to: dumb question about support forum #50293
     mitchcan
    Participant

    Excellent. And has all of the ones I saved during time it was not working. Nice.

    Glad I wasn’t imagining things. πŸ™‚

    Thanks.

    in reply to: BuddyPress Profile notifications tab throwing error #50061
     mitchcan
    Participant

    It was actually on the /membership-account/membership-levels/ page, not the register page.

    Still, it was indeed a plugin issue. But funny enough, it wasn’t that I had too many, it was that I didn’t have ones Active for that page. Without BuddyPress and the bp-custom plugins active, that generated the errors. When I went through to look at deactivating some, I tested with those on and it works.

    Thanks for thinking through this with me.

    in reply to: Conflict with "Group email suscription" plugin. #49890
     mitchcan
    Participant

    Excellent. That second version was much better. This at least allows me to not display that email options overlay, but still have the user be able to click to make email changes.

    Thank you very much!

Viewing 40 posts - 81 through 120 (of 158 total)

Log in with your credentials

Forgot your details?