Forum Replies Created

Viewing 36 posts - 1 through 36 (of 36 total)
  • Author
  • in reply to: Embeds Cut Off #80303
     st
    Participant

    Thanks. It seems to be working now. Was it just functions.php that was updated?

    in reply to: Embeds Cut Off #80288
     st
    Participant
    This reply has been set as private.
    in reply to: Embeds Cut Off #80167
     st
    Participant

    Hi @Radu

    I am not able to provide FTP access but this problem is easy to replicate. Just install the latest versions of WordPress and SweetDate. No additional code is needed. Follow standard WordPress instructions to embed:

    https://codex.wordpress.org/Embeds

    It works in WordPress default theme “Twenty Fifteen.” It doesn’t work in SweetDate.

    Please let me know if further clarification is needed.

    Cheers,
    st

    in reply to: Embeds Cut Off #80138
     st
    Participant

    Hi @Radu

    This does seem to work for the twitter embed but not for an Instagram embed: http://www.savortechnology.com/wordpress/2015/09/30/test-instagram/

    in reply to: Embeds Cut Off #80019
     st
    Participant

    Please feel free to change the theme from “SweetDate” to “Twenty Fifteen” to see how it should be displayed correctly.

    in reply to: Embeds Cut Off #80017
     st
    Participant
    This reply has been set as private.
    in reply to: Embeds Cut Off #80015
     st
    Participant
    This reply has been set as private.
    in reply to: Embeds Cut Off #79801
     st
    Participant

    Thank you @Laura we are patiently waiting for this issue to be resolved.

    in reply to: Embeds Cut Off #78222
     st
    Participant
    This reply has been set as private.
    in reply to: Forum Navigation Issue #74024
     st
    Participant

    Thanks @Laura. Are you able to provide any updates on this issue?

    in reply to: Forum Navigation Issue #71520
     st
    Participant

    I’ve hit the bottom of the list. There is no way to get to page 2 from here.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Forum Navigation Issue #71517
     st
    Participant

    The above link did not work. Here is the actual example page: http://seventhqueen.com/demo/sweetdatewp/forums/forum/general-discussion/

    in reply to: Remember Me Not Working #69460
     st
    Participant

    Thank you. That has solved the problem.

    in reply to: Remember Me Not Working #69207
     st
    Participant

    @Andrei Sorry, we are actually using version 2.8.4.

    in reply to: Remember Me Not Working #69206
     st
    Participant

    @Andrei We are using version 2.4.8.

    in reply to: Remember Me Not Working #68309
     st
    Participant
    This reply has been set as private.
    in reply to: Styling Broken #43985
     st
    Participant

    It seems the issue might be with CloudFlare’s Auto Minify feature. Not sure what changed that is causing it to fail but I am turning it off for now.

    in reply to: Styling Broken #43983
     st
    Participant
    This reply has been set as private.
    in reply to: Bug: Member's Page Pagination #21428
     st
    Participant

    Yup. Long story short a plugin was changing bp_ajax_querystring from a string to an array. Arrays are supported and the plugin was working on other areas of the site. It was only causing problems for the member directory page.

    COPY CODE
    add_filter('bp_ajax_querystring', 'test', 11, 2);
    
    function test($query_string)
    {
    	return wp_parse_args($query_string);
    }
    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21356
     st
    Participant

    This is not a result of a plug-in. WordPress 2.6 supports moving the wp-content directory by specifying WP_CONTENT_DIR and WP_CONTENT_URL. This functionality is included in the WordPress core and mentioned in the WordPress codex. I assume that you’d like your theme to support this core functionality. I have already tested this for you and have provided the code below. I hope that you are able to include these updates in the next version of the theme.

    sweetdate/framework/options/default.php line 17:
    define('SQUEEN_OPTIONS_URL', get_template_directory_uri() . '/framework/options/');

    sweetdate/custom_buddypress/bp-functions.php line 1025:
    if (copy(FRAMEWORK_URL."/inc/bp-custom.php", WP_PLUGIN_DIR."/bp-custom.php"))

    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21337
     st
    Participant

    Shoot. Can you please edit the above post to domain.com?

    I don’t think that is the problem. The server definitely has write permissions. The file does not exist at /var/community.domain.com//wp-content/plugins/bp-custom.php. Shouldn’t it be trying to copy the file from /var/cdn.domain.com//wp-content/plugins/bp-custom.php?

    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21331
     st
    Participant

    It turns out the FontAwesome bug was related to my .htaccess settings and is working now without having to use the CDN.

    However, I’ve since enabled warnings and am seeing this:

    Warning: copy(/var/community.domain.com//wp-content/plugins/bp-custom.php): failed to open stream: No such file or directory in /var/cdn.domain.com/wp-content/themes/sweetdate/custom_buddypress/bp-functions.php on line 1025

    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21316
     st
    Participant
    This reply has been set as private.
    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21311
     st
    Participant

    Could I email you the site address?

    in reply to: Bug: Member's Page Pagination #21309
     st
    Participant

    It seems that this issue was being caused by another plugin.

    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21305
     st
    Participant

    define('SQUEEN_OPTIONS_URL', get_template_directory_uri() . '/framework/options/');

    has the same output as

    define('SQUEEN_OPTIONS_URL', get_bloginfo('template_directory') . '/framework/options/');

    so it works but the FontAwesome icons do not appear in Internet Explorer or FireFox. I am using this as a temporary workaround:

    COPY CODE
    wp_deregister_style('font-awesome');
    wp_enqueue_style('font-awesome-cdn', '//maxcdn.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css');
    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21295
     st
    Participant

    I was able to fix the Font Awesome issue by loading it from the CDN instead:

    COPY CODE
    wp_deregister_style('font-awesome');
    wp_enqueue_style('font-awesome-cdn', '//maxcdn.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css');

    I still think it would be wise to apply the changes from the original post to the theme so it will support WP_CONTENT_DIR and WP_CONTENT_URL.

    in reply to: SQUEEN_OPTIONS_URL and WP_CONTENT_DIR #21239
     st
    Participant

    The icons are working in Chrome and Safari but not in Firefox or Internet Explorer.

    in reply to: Icons won't display in Firefox #21227
     st
    Participant

    The icons are not loading in FireFox for me after moving the wp-content directory. Perhaps these issues are related?

    https://archived.seventhqueen.com/forums/topic/squeen_options_url-and-wp_content_dir

    in reply to: Bug: Member's Page Pagination #21140
     st
    Participant

    v2.6.1

    Also the twitter widget was working great but it now says:

    Latest Tweets
    Twitter said: Array

    in reply to: Bug: Member's Page Pagination #21132
     st
    Participant

    Can I send you a private message or email?

    in reply to: Sticky Post Bug #10815
     st
    Participant

    Fixed. Thank you.

    in reply to: Sticky Post Bug #10695
     st
    Participant

    It’s working perfectly in Safari. In FireFox the image is 100% page width and overlapping with the sidebar.

    in reply to: Friend Request Notification Color #5405
     st
    Participant

    As I already mentioned above this does not work. I tried copying your code exactly and it still doesn’t work. Please test in Safari and FireFox. Thanks.

    in reply to: Admin toolbar blocks navigation toolbar #1978
     st
    Participant

    I want to leave the admin bar on. Can you please add a margin-top to .top-bar so that it won’t overlap?

    jQuery(‘.top-bar’).css(‘margin-top’, ’28px’);

    or

    jQuery(‘.top-bar’).css(‘margin-top’, jQuery(‘#wpadminbar’).height());

    in reply to: Unable to change colors #1976
     st
    Participant

    This is not an ideal solution because the CSS will need to replaced when the theme is updated. Also, you did not answer my question about changing the blue colors on the BuddyPress template pages. Please see the image posted above.

Viewing 36 posts - 1 through 36 (of 36 total)

Log in with your credentials

Forgot your details?