Forum Replies Created

Viewing 15 replies - 61 through 75 (of 150 total)
  • Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @saschinger,

    Looking at the source code of your referral link it looks like GeneratePress is applying it’s own CSS to the proposal template. Below is some CSS that will override this styling for the post type proposal:

    .single-proposal .site-content {
        padding-top: 0px!important;
    }
    .single-proposal .grid-container {
        max-width: unset!important;
    }

    Best regards,
    WP Codeus

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @jpurdy647,

    Looking at the source code of your referral link it shows that you have not entered a custom size for thumbnails.

    To help you troubleshoot please follow the options below.

    1. If you’re using a cache plugin, please flush all cache to ensure your WordPress install is using the latest versions.
    2. Double check your design settings that you have a valid value formatted like ‘200px’. Make sure to have ‘Save Changes’ when you are done.

    Best regards,
    Kevin

    Plugin Author WP CodeUs

    (@wpcodeus)

    This has been answered via your support ticket.

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hey @h2ofilters,

    With Advanced Sermons you’re able to customize the Sermon Label and Archive Slug, however, this feature is only available in Advanced Sermons Pro.

    You can view all available features with Advanced Sermons here: https://advancedsermons.com/features/

    Best regards,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @pab34,

    We have tested the proposal link that you have sent and was able to approval the proposal without any problems.

    Now that you have deactivated 3rd party plugins, please make sure to clear your browsers cache and cookies.

    Best regards,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @jmclean,

    Advanced Sermons uses a combination of templates and shortcodes to display the sermon information.

    The primary archive and single sermon templates are built using templates and can be customized with hooks. You can view all available hooks here: https://advancedsermons.com/docs/hooks/

    You can also use the shortcodes included in Advanced Sermons Pro to display recent sermons and information within your WordPress theme. You can view all available shortcodes here: https://advancedsermons.com/shortcodes/. You can also create your own shortcodes if you have the knowledge.

    Just note, the filter functionality and pagination is strictly available to the archive template.

    As for API, you would need to utilize the default WordPress API and all can be tested with the free version of Advanced Sermons to make sure it meets your requirements.

    Best regards,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @mtroxell,

    To accomplish this you would need to use the shortcodes available with Advanced Sermons Pro. You can view an example of the available shortcodes here: https://advancedsermons.com/shortcodes/

    From the Advanced Sermons settings, if you navigate to the ‘Shortcodes’ tab you will be able to copy and customize the shortcodes to your needs.

    If you’re not familiar with WordPress shortcodes, there are a ton of online tutorials available and are very easy to use.

    Best regards,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @pab34,

    Looking at the referral link and source code it looks like your issue is coming from a 3rd party membership plugin.

    I would recommend contacting the developers of your membership plugin to see if there is a way to disable sign in or authorization for the custom post type ‘proposals’.

    Best regards,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hey @ralphonz,

    Please understand that specific features were left out from the free version and will be integrated into WP Proposals Pro. Unfortunately we do not have an ETA as to when this will be completed due to our heavy work load.

    Adding a complete list of currencies is a little more complicated than that as there are different decimal places, currency locations, and other logic that will all need to be modified in order to make this happen and work properly for everyone.

    Best regards,

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hey @ralphonz,

    With Gutenberg not being the most popular choice of WordPress users right now, we have choose to apply the classic editor to the custom post type proposals. However, below is some code that you can use to enable Gutenberg for your proposals.

    This code should be placed in the functions.php file of your active theme or a custom plugin. This allows you to update WP Proposals without loosing any of your custom modifications.

    // Add REST API support to WP Proposals post type.
    add_filter( ‘register_post_type_args’, ‘wp_proposals_rest_post_type_args’, 10, 2 );
    function wp_proposals_rest_post_type_args( $args, $post_type ) {
    if ( ‘proposal’ === $post_type ) {
    $args[‘show_in_rest’] = true;
    }
    return $args;
    }
    // Add REST API support to WP Proposals taxonomies.
    add_filter( ‘register_taxonomy_args’, ‘wp_proposals_rest_taxonomy_args’, 10, 2 );
    function wp_proposals_rest_taxonomy_args( $args, $taxonomy_name ) {
    if ( ‘proposal_invoice’ === $taxonomy_name || ‘clients’ === $taxonomy_name || ‘proposal_status’ === $taxonomy_name ) {
    $args[‘show_in_rest’] = true;
    }
    return $args;
    }

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @ralphonz,

    WP Proposals uses the default taxonomy functionality for the Invoice URL. I do not think character count is your issue, but your book keeping software could have a character included in the text that is triggering the sanitization to delete the data for security reason.

    Unfortunately, this is not something we are able to changes as it is the default functionality of WordPress.

    I recommend using a shortener or URL redirect if you wish to use this feature with your current booking system.

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @ralphonz,

    We have just checked our staging site and are not able to duplicate the issue nor other support tickets from users.

    Please ensure you’re using the latest version of WP Proposals and WordPress.

    When you add an Invoice URL you must hit the ‘Add’ button or enter on your keyboard to apply your URL.

    To troubleshoot you can open up the console log on your browser to see if you’re getting an error messages that might be caused by a 3rd party plugin.

    You can also temporarily disable plugins on your install to see if you can pinpoint the issue.

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @mtroxell,

    To display sermons in a widget that can be added to a sidebar you would need to upgrade to Advanced Sermons Pro and use the built-in shortcodes.

    You can view examples of all available shortcodes and widgets here: https://advancedsermons.com/shortcodes/

    Best,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @joshmans,

    We are constantly working to improve Advanced Sermons based on our customers feedback. We do have an awesome update coming out very soon with some great features requested by our users.

    An import/export option is still on our backlog for a future update.

    In the meantime, checkout our documentation on suggested import plugins that you can utilize to import sermons into Advanced Sermons: https://advancedsermons.com/docs/import-sermons/

    If you run into any questions, just let us know!

    Best regards,
    Kevin Wilgenbusch

    Plugin Author WP CodeUs

    (@wpcodeus)

    Hello @abezun,

    This is typically caused by WordPress themes or custom code overriding the default styling of the select fields.

    In order to provide you with the necessary CSS, we would need to review the source code of your site and see what exactly is overriding it.

    You can submit a support ticket here with a URL to your WordPress site utilizing Advanced Sermons: https://wpcodeus.com/support/

    Best regards,
    Kevin Wilgenbusch

Viewing 15 replies - 61 through 75 (of 150 total)