BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 10,011 through 10,020 (of 15,332 total)
  • Author
    Posts
  • in reply to: images #305432
    Steven Zahm
    Keymaster

    @ franco

    My last reply was my best guess without a link so I could see the issue. If you can please share a link to the page having the trouble, that would be most helpful in me being able to assist.

    in reply to: The 4.0 upgrade #305404
    Steven Zahm
    Keymaster

    @ stephen

    Open the page up in Chrome, click the F12 key and then click the Console tab.

    You’ll see the error at issue here.

    The site auto redirects to https … which is fine, but, the theme or another plugin is loading jQuery from a Google CDN rather than the version bundled with WordPress. This is also fine, but only when done correctly. Unfortunately, this was not done correctly for several reasons.

    • It is not being loaded over https. This is blocking it from being loaded at all. This error is breaking all javascript on the site.
    • An old version is being loaded (or trying to be).
    • And the correct version of jQuery Migrate which WordPress would load is not being loaded at all.

    One option that might be a simple fix … go to the Connections : Settings admin page, click the Advanced tab and enable the jQuery option under the Compatibility section. Enabling this option will attempt to correct the issue.

    Hope that helps, let me know!

    Steven Zahm
    Keymaster

    @ Hector

    If you’ve customized a template, then only you will know where to replace the code at…

    I did visit the site, seems the images are loading fine and that you’re using on of the core default templates, Bio Entry Card.

    The text you’re asking about … I can’t really help with that, sorry, they are shortcodes for maybe a theme or another plugin. If you want to remove them, edit the page and delete them.

    Hope that helps!

    in reply to: Code items appearing in form #305285
    Steven Zahm
    Keymaster

    @ Jason

    No problem!

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    https://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Code items appearing in form #305283
    Steven Zahm
    Keymaster

    @ Jason

    Why it stopped interfering when NextGen was deactivated is likely that NextGen alters the execution order of some core WP filters.

    in reply to: Code items appearing in form #305282
    Steven Zahm
    Keymaster

    @ Jason

    Actually the conflict is with the [visibility] shortcode added by the theme:
    http://theme.co/x/demo/integrity/1/shortcodes/responsive-visibility/

    I installed the Code Snippets plugin and added a snippet that removes that shortcode and all is fixed … well … unless you need that shortcode. If that is the case, I can update the shortcode in the snippet to be [x_visibility] instead.

    Let me know!

    in reply to: Code items appearing in form #305247
    Steven Zahm
    Keymaster

    @ Jason

    I still get the user/pass error. When I access the url directly I am redirected to here:
    http://marion.crundwelldigital.com/login/

    Maybe you have some IP filtering???

    in reply to: Call to undefined function _connections_list() #305246
    Steven Zahm
    Keymaster

    @ Yves

    The Connections Extend is likely a custom plugin as it is not one of mine. I somewhat recently moved the file that contains the _connections_list() function. You’ll have to update that custom plugin to load it from the new path which is:
    ../plugins/connections/includes/shortcodes/

    Hope that help!

    Steven Zahm
    Keymaster

    @ Yemi

    No problem and thanks!

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    https://wordpress.org/support/view/plugin-reviews/connections

    Steven Zahm
    Keymaster

    @ Yemi

    You want to replace this code:

    if ( $entry->getImageLinked() && $entry->getImageDisplay() )
    {
        echo '<img class="photo" alt="Photo of ' , $entry->getFirstName() , ' ' , $entry->getLastName() , '" src="' , CN_IMAGE_BASE_URL , $entry->getImageNameCard() , '" />' , "\n";
    }
    else
    {
        echo '<div class="cn-image-none" style="width: ' . $connections->options->getImgEntryX() . 'px ; height: ' . $connections->options->getImgEntryY() . 'px ;">No Photo Available</div>';
    }
    

    Let me know how it goes!

Viewing 10 posts - 10,011 through 10,020 (of 15,332 total)