BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 4,111 through 4,120 (of 15,332 total)
  • Author
    Posts
  • in reply to: Twitter icon not loading – all templates #409484
    Steven Zahm
    Keymaster

    Glad to help. My guess is the htaccess password is blocking the external connections required for Photon.

    in reply to: Location and Reviews feature #409381
    Steven Zahm
    Keymaster

    @ James

    The category IDs in the shortcode were not correct… I didn’t verify those when I looked originally. I changed the IDs and now the options are shown as they should be.

    The addon is a plugin called “Connections Multiple Category Search”. You can move it to other sites as needed like you would any other plugin.

    Hope that helps!

    in reply to: Import Issue #409380
    Steven Zahm
    Keymaster

    @ James

    Ok, I did not do any testing, but I opened the file and noticed that the file encoding is broken. What was the source of the CSV file? At the end of every phone number is ÿH which basically is my text editor doing its best to decode whatever that character should actually be.

    My suggesting, read this tip in the FAQs. make sure the file is UTF8 encoded and I’m sure it’ll import just fine.

    Hope this helps, let me know.

    in reply to: Where is the form? #409374
    Steven Zahm
    Keymaster

    @ Martin

    Ok, it that the HTML markup seemed identical to the category widget HTML. Regardless, for the /submit/ link to function on the homepage, you need to have the [connections] shortcode on the page. No shortcode, not form.

    Hope that helps!

    in reply to: Location and Reviews feature #409366
    Steven Zahm
    Keymaster

    @ James

    Apologies my and my entire family has been ill so I have been running a little behind. No excuse but it the reason.

    The reason the shortcode did not work is because you did not have the addon yet. I installed it and now the shortcode works.

    There is a CSS conflict with the them though. Well, not as much as a conflict than the theme is doing something poorly. The HTML span elements are inline elements. The theme is settings them as inline-blocks, globally. The only way to I can think of fixing this is to add this to the theme’s custom CSS area:

    span {
        display: inline;
    }
    

    But doing this could break some of the theme’s layout because any spans within the them that is relying on spans being inline-blocks will no longer be correct. Ideally the theme author should fix this and adjust the theme accordingly.

    Hope this helps!

    in reply to: Import Issue #409365
    Steven Zahm
    Keymaster

    @ James

    That’s curious. Have never run into an issue like that before. Could you please attach a copy of the CSV file you are importing? Change the name from .csv to .txt first otherwise it will be rejected as an valid attachment.

    Also, please include as screenshot of the mapping you are using so I can match that too when I test.

    in reply to: Twitter icon not loading – all templates #409364
    Steven Zahm
    Keymaster

    @ Emma

    Please try deactivating the JetPack Photon module. Does that help?

    in reply to: Go back to directory. changes #409363
    Steven Zahm
    Keymaster

    @ Michelle

    The only this could be done is thru PHP code. You would have to hook into the cn_entry_action_back_atts filter and change the text option based on the category that is being viewed. Something like this:

    function my_custom_cn_back_link( $atts ) {
    
        if ( cnQuery::getVar( 'cn-cat-slug' ) ) {
    
            // If the category slug is a descendant, use the last slug from the URL for the query.
            $categorySlug = explode( '/' , cnQuery::getVar( 'cn-cat-slug' ) );
    
            if ( isset( $categorySlug[ count( $categorySlug ) - 1 ] ) ) $categorySlug = $categorySlug[ count( $categorySlug ) - 1 ];
    
            $term = cnTerm::getBy( 'slug', $categorySlug, 'category' );
    
            $category = new cnCategory( $term );
    
            switch ( $category->getID() ) {
    
                case x:
                    $atts['text'] = 'Back to all Shops';
                    break;
    
                case y:
                    $atts['text'] = 'Back to Our Sponsors';
                    break;
            }
        }
    
        return $atts;
    }
    

    You would change x and y in the code above to the correct category ID. To add more you would add additional case statements.

    Hope this helps!

    in reply to: Entry missing from the backend #409362
    Steven Zahm
    Keymaster

    @ gus

    Most of the time when this is asked the reason is due to a filter that is being applied to the list on the manage page. I suggest double checking to confirm that all the filters are set to show all.

    Hope that helps, let me know.

    in reply to: Remove user with cron job #409361
    Steven Zahm
    Keymaster

    @ Mike

    Very likely Paid Memberships Pro has an action that fires when a member’s membership expires. I would hook into this action and set the related entry to as unlisted.

    Does that help?

Viewing 10 posts - 4,111 through 4,120 (of 15,332 total)