Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • I believe it’s under Settings Not Upload File. Scroll down and click on Settings and than click on Upload File.

    Thread Starter screenprintr

    (@screenprintr)

    Okay, I deactivated ContactForm 7. WordPress Upload works, but I now don’t have a contact form.

    Thread Starter screenprintr

    (@screenprintr)

    I turned define( ‘WP_DEBUG’, false ); to true to get the errors printed on screen. Than afterwards I changed the plug in name to xxxxx-bad. I than changed the true back to false. I can now get my login screen.

    The first error says Contact Form 7. Looks like it conflicts with your plug in.

    Thread Starter screenprintr

    (@screenprintr)

    I’m getting these errors and it doesn’t allow me to sign in to wordpress.xxx/wp-admin

    Notice: wpcf7_add_shortcode is deprecated since Contact Form 7 version 4.6! Use wpcf7_add_form_tag instead. in /home/mncst/public_html/wordpress/wp-content/plugins/contact-form-7/includes/functions.php on line 374

    Warning: Cannot modify header information – headers already sent by (output started at /home/mncst/public_html/wordpress/wp-content/plugins/contact-form-7/includes/functions.php:374) in /home/mncst/public_html/wordpress/wp-includes/pluggable.php on line 1251

    Warning: Cannot modify header information – headers already sent by (output started at /home/mncst/public_html/wordpress/wp-content/plugins/contact-form-7/includes/functions.php:374) in /home/mncst/public_html/wordpress/wp-includes/pluggable.php on line 1254

    Thread Starter screenprintr

    (@screenprintr)

    Fixed the problem by following this video: https://www.youtube.com/watch?v=r__meg9uhE0

    Issues called the White Screen of Death. Well, I didn’t fix the plug-in but I can log into admin now.

    Thread Starter screenprintr

    (@screenprintr)

    Found one that actually works. DownML.

    This is old, but I have the same issue. When I attempted to add property from a User, nothing happens. The Continue Button is grayed out.

    Contacted the Developers via: Support.wpestate.org.

    I gave them two issues. One, attempting to Increase Memory Size. I watched a YouTube video, and it helped me figure it out. Define the memory size in the WP-Config.php at the top of the page. Worked great.

    However, as a new WP-Rentals Theme user and new installation, can’t seem to get things working.

    Thread Starter screenprintr

    (@screenprintr)

    Thank you, I updated it yesterday via the Bluehost cPanel. PHP Config. Selected PHP 5.6 and clicked on Save.

    screenprintr

    (@screenprintr)

    I have a similar issue. Not sure how to open a thread.

    Any how, we have a Policy button and want to add a Rental Agreement checkbox that’s required.

    Added some code but something crashed and we don’t know if it’s my new box.

    Here’s the error: Fatal error: Cannot redeclare woo_custom_cart_button_text() (previously declared in /home/dfraser/public_html/wp-content/themes/bellevue/functions.php:44) in /home/dfraser/public_html/wp-content/themes/bellevue/functions.php on line 54.

    Here’s the website that’s down right now: http://www.HalfMoonCabin.com

    Here’s the code. Half was already in function.php and the rest we added.

    <?php
    /**
    * Roots includes
    */
    include( get_template_directory() . ‘/lib/init.php’); // Initial theme setup and constants
    include( get_template_directory() . ‘/lib/wrapper.php’); // Theme wrapper class
    include( get_template_directory() . ‘/lib/config.php’); // Configuration
    include( get_template_directory() . ‘/lib/activation.php’); // Theme activation
    include( get_template_directory() . ‘/lib/titles.php’); // Page titles
    include( get_template_directory() . ‘/lib/cleanup.php’); // Cleanup
    include( get_template_directory() . ‘/lib/nav.php’); // Custom nav modifications
    include( get_template_directory() . ‘/lib/comments.php’); // Custom comments modifications
    include( get_template_directory() . ‘/lib/widgets.php’); // Sidebars and widgets
    include( get_template_directory() . ‘/lib/scripts.php’); // Scripts and stylesheets
    include( get_template_directory() . ‘/lib/custom.php’); // Custom functions

    // THEMOVATION CUSTOMIZATION
    include( get_template_directory() . ‘/lib/class-tgm-plugin-activation.php’); // Bundled Plugins

    // Activate Option Tree in the theme rather than as a plugin
    add_filter( ‘ot_theme_mode’, ‘__return_true’ );
    add_filter( ‘ot_show_pages’, ‘__return_false’ );
    //add_filter( ‘ot_show_pages’, ‘__return_true’ );

    // Don’t use Option Tree Meta Boxes for Pages.
    if(isset($_GET[‘post’]) && $_GET[‘post’] > “”){
    if(get_post_type($_GET[‘post’]) == ‘page’){
    add_filter(‘ot_meta_boxes’, ‘__return_false’ );
    }
    }

    include_once(get_template_directory() . ‘/option-tree/ot-loader.php’);
    include_once(get_template_directory() . ‘/option-tree/theme-options.php’ ); // LOAD THEME SETTINGS
    include_once(get_template_directory() . ‘/option-tree/theme-options-defaults.php’); // LOAD OT DEFAULTS
    include_once(get_template_directory() . ‘/register-meta-boxes.php’); // LOAD OT DEFAULTS

    // END Option Tree

    add_filter( ‘woocommerce_product_single_add_to_cart_text’, ‘woo_custom_cart_button_text’ ); // 2.1 +

    function woo_custom_cart_button_text() {

    return __( ‘My Button Text’, ‘woocommerce’ ); /** LINE 44 **/

    }

    add_filter( ‘add_to_cart_text’, ‘woo_custom_cart_button_text’ ); // < 2.1

    function woo_custom_cart_button_text() {

    return __( ‘Secure Checkout’, ‘woocommerce’ ); /**LINE 54 **/

    }
    /**
    * Add checkbox field to the checkout
    **/
    add_action(‘woocommerce_after_order_notes’, ‘my_custom_checkout_field’);

    function my_custom_checkout_field( $checkout ) {

    echo ‘<div id=”my-new-field”><h3>’.__(‘My Checkbox: ‘).'</h3>’;

    woocommerce_form_field( ‘my_checkbox’, array(
    ‘type’ => ‘checkbox’,
    ‘class’ => array(‘input-checkbox’),
    ‘label’ => __(‘I have read the Rental Agreement.‘),
    ‘required’ => true,
    ), $checkout->get_value( ‘my_checkbox’ ));

    echo ‘</div>’;
    }

    /**
    * Process the checkout
    **/
    add_action(‘woocommerce_checkout_process’, ‘my_custom_checkout_field_process’);

    function my_custom_checkout_field_process() {
    global $woocommerce;

    // Check if set, if its not set add an error.
    if (!$_POST[‘my_checkbox’])
    $woocommerce->add_error( __(‘Please agree to my checkbox.’) );
    }

    /**
    * Update the order meta with field value
    **/
    add_action(‘woocommerce_checkout_update_order_meta’, ‘my_custom_checkout_field_update_order_meta’);

    function my_custom_checkout_field_update_order_meta( $order_id ) {
    if ($_POST[‘my_checkbox’]) update_post_meta( $order_id, ‘My Checkbox’, esc_attr($_POST[‘my_checkbox’]));
    }

    As you read the Error, it’s says Line 44 is conflicting with line 54.

    My code starts with: * Add checkbox field to the checkout. But if the problem isn’t the new code what is it? I REMARKed line 44 and 54.

    This is awesome. I could not add services earlier today. I posted on this board, and found an update under plugins on the WordPress Dashboard. Boom, it fixed the problem.

    Thank you very much.

    Welcome. Which one, User name email addresses or services?

    Titkikwp,

    As for as already registered staff email addresses. I used another email address that I happen to have. That worked for me. I understand your point, that WP addresses shouldn’t matter since they’re not staff. Well, not really anyways.

    I’m having a similar issue with adding services. I’ve added Staff, and the services they provide.

    Plugin Author, you mention that we need to add Providers and Services within the Categories. Are providers, and staff the same thing? If so, why not call it Staff, instead?

    I tried adding Services from the Services tab, and it does not allow me to add them.

    There must be a sequence of items that must be added first. Could you list them somewhere. Maybe say, before adding services, the Staff Members must be created with Services they offer, and the days they work, as well as the hours. Whatever criteria they need

    Willing to help you create this if you need me too. Thank you in advance, and for all your help.

    I noticed my text did not move until I increased the size or amount of text. I copied the content and repasted under the original text. Now it works some what.

    http://www.MrModifier.com/jobplacement.

    I set Paralallax Scroll up from it’s admin section. Then created a page, and placed the short code in it.

    The Title of the Paralallax Scroll item, appears on the page along with the content I set up.

    So, The image (featured image on the lower right bottom of page) was set, than pasted enough content on Paralallax Scroll item. Updated. The only thing I put on the Page (Jobplacement) is the Short Code.

    Bam, done.

    If it’s not working right, please give some tips.

Viewing 14 replies - 1 through 14 (of 14 total)