Forum Replies Created

Viewing 15 replies - 16 through 30 (of 67 total)
  • Thread Starter wp-newbee

    (@wp-newbee)

    The access key needed to be renewed. We did that and problem solved.
    Thank you so much for all your help and wonderful advise.

    Best

    Thread Starter wp-newbee

    (@wp-newbee)

    Hello,
    I was wondering if you have any update for me?
    I tested the plugin in my local, fresh WP 4.4.1 install, no other plugin, but WPGoTo 1.1.5
    And still the registration form does not show. Am the only one have this problem?
    I appreciate any feedback.

    Thank you.

    Best

    Thread Starter wp-newbee

    (@wp-newbee)

    The problem was in child’s them function.php. I had some unused codes which causing some of the warning and one plugin that also was not in use, but activated for some reason.

    Thank you some much for your time and great detailed advise.
    You guys are the best ??

    Thread Starter wp-newbee

    (@wp-newbee)

    Thank you Tara. I think we can close this ticket.

    Thread Starter wp-newbee

    (@wp-newbee)

    And this is how I display it:
    get_header();
    global $accesspresslite_options;
    $accesspresslite_settings = get_option( ‘accesspresslite_options’, $accesspresslite_options );
    ?>

    <div class=”ak-container”>
    <section id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>

    <?php if ( have_posts() ) : ?>

    <header class=”page-header”>
    <h1 class=”page-title”>Courses</h1>
    <?php
    // Show an optional term description.
    $term_description = term_description();
    if ( ! empty( $term_description ) ) :
    printf( ‘<div class=”taxonomy-description”>%s</div>’, $term_description );
    endif;
    ?>
    </header><!– .page-header –><nav class=”nav-cat”>

    </nav>

    <?php /* Start the Loop */ ?>
    <?php
    while ( have_posts() ) : the_post();?>

    <?php
    /* Include the Post-Format-specific template for the content.
    * If you want to override this in a child theme, then include a file
    * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    get_template_part(‘content’); */?>
    <section class=”ac-container” style=”width:796px; margin-top:auto; margin-bottom:auto;”><div class=”ac-div”><input id=”ac-1″ name=”accordion-1″ type=”checkbox” checked/><label for=”ac-1″>
    ” title=”<?php echo esc_attr( sprintf( __( ‘Permalink to %s’, ‘events’ ), the_title_attribute( ‘echo=0’ ) ) ); ?>” rel=”bookmark”><?php the_title(); ?></label>

    <?php if ( has_post_thumbnail() ) : ?>
    <?php the_post_thumbnail(); ?>
    <div class=”clear”></div>
    <?php endif; ?>
    <?php the_content(); ?>
    <?php wp_link_pages(); ?>

    <?php endwhile; ?></div></section>

    <?php accesspresslite_paging_nav(); ?>

    <?php else : ?>

    <?php get_template_part( ‘content’, ‘none’ ); ?>

    <?php endif; ?>

    </main><!– #main –>
    </section><!– #primary –>

    <?php get_sidebar(‘right’); ?>
    </div>
    <?php get_footer(); ?>

    Thread Starter wp-newbee

    (@wp-newbee)

    All plugin removed – only child theme active and I get this error Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘search_filter’ not found or invalid function name in /var/www/html/training.pickford.intra/training/wp-includes/plugin.php on line 601
    The only thing I can think of is that I created a custom post plugin and below is my code:
    function courses_custom_posttypes() {
    //adding course post type
    $labels = array(
    ‘name’ => ‘Courses’,
    ‘singular_name’ => ‘Course’,
    ‘menu_name’ => ‘Courses’,
    ‘name_admin_bar’ => ‘Courses’,
    ‘add_new’ => ‘Add New’,
    ‘add_new_item’ => ‘Add New Course’,
    ‘new_item’ => ‘New Course’,
    ‘edit_item’ => ‘Edit Course’,
    ‘view_item’ => ‘View Course’,
    ‘all_items’ => ‘All Courses’,
    ‘search_items’ => ‘Search Courses’,
    ‘parent_item_colon’ => ‘Parent Courses:’,
    ‘not_found’ => ‘No courses found.’,
    ‘not_found_in_trash’ => ‘No courses found in Trash.’,
    );

    $args = array(
    ‘labels’ => $labels,
    ‘public’ => true,
    ‘publicly_queryable’ => true,
    ‘show_ui’ => true,
    ‘show_in_menu’ => true,
    ‘menu_icon’ => ‘dashicons-welcome-learn-more’,
    ‘query_var’ => true,
    ‘rewrite’ => true,
    ‘capability_type’ => ‘post’,
    ‘has_archive’ => true,
    ‘hierarchical’ => false,
    ‘menu_position’ => 5,
    ‘supports’ => array( ‘title’, ‘editor’, ‘thumbnail’,’author’, ‘post-formats’),
    );
    register_post_type( ‘courses’, $args );
    }
    add_action( ‘init’, ‘courses_custom_posttypes’ );

    // Flush rewrite rules to add “review” as a permalink slug
    function courses_custom_flush() {
    courses_custom_posttypes();
    flush_rewrite_rules();
    }
    register_activation_hook( __FILE__, ‘courses_custom_flush’ );
    /*create taxaonomy*/

    function course_taxonomy() {
    register_taxonomy(
    ‘courses_categories’, //The name of the taxonomy. Name should be in slug form (must not contain capital letters or spaces).
    ‘courses’, //post type name
    array(
    ‘hierarchical’ => true,
    ‘label’ => ‘Course Category’, //Display name
    ‘query_var’ => true,
    ‘rewrite’ => array(
    ‘slug’ => ‘course’, // This controls the base slug that will display before each term
    ‘with_front’ => false // Don’t display the category base before
    )
    )
    );
    }
    add_action( ‘init’, ‘course_taxonomy’);
    /*change the permalink */

    function filter_post_type_link($link, $post)
    {
    if ($post->post_type != ‘courses’)
    return $link;

    if ($cats = get_the_terms($post->ID, ‘courses_categories’))
    $link = str_replace(‘%courses_categories%’, array_pop($cats)->slug, $link);
    return $link;
    }
    add_filter(‘post_type_link’, ‘filter_post_type_link’, 10, 2);

    Did I do something wrong?

    Thank you

    Thread Starter wp-newbee

    (@wp-newbee)

    Thank you Tara, I will do the above and let you know the result. Appreciate you advise.

    Thread Starter wp-newbee

    (@wp-newbee)

    yes, but still has problem viewing the registration form.

    Thank you

    Thread Starter wp-newbee

    (@wp-newbee)

    I looked at your screenshots for the shortcode and see that you suggest to use the id after registration, so I changed the id as you see below

    [register_free_webinar webid=9119479555354434049 pageid=2431]

    the only difference is now that takes longer for page to load and creates an empty <p></p>.

    Still no form displays.

    Thank you

    Thread Starter wp-newbee

    (@wp-newbee)

    I looked at your screenshots for the shortcode and see that you suggest to use the id after registration, so I changed the id as you see below

    [register_free_webinar webid=9119479555354434049 pageid=2431]

    the only difference is now that takes longer for page to load and creates an empty <p></p>.

    Still no form displays.

    Thank you

    Hi, I had the same problem, I solved it by creating a thank you page. Go to pages, create new, Put Thank You in title and your message in the body.

    Hope this help.

    Forum: Plugins
    In reply to: [GoToWP] Confirmation page

    Hi, I had the same problem, I solved it by creating a thank you page. Go to pages, create new, Put Thank You in title and your message in the body.

    Hope this help.

    Hi, I had the same problem, I solved it by creating a thank you page. Go to pages, create new, Put Thank You in title and your message in the body.

    Hope this help.

    Thread Starter wp-newbee

    (@wp-newbee)

    Yes, I have 4 other WP in the same server. My sites are running in SSL.
    All allow Apache write the folder but this one.
    Before I manually create the folder via ftp, I was getting this error:
    Unable to create directory wp-content/uploads/2016/01. Is its parent directory is writable by the server?
    After I create the directory manually via ftp with permission, I was able to add images into the folder via ftp, but when I tried to upload images from media library I was getting this error:
    name of the file in first line. in second line says The uploaded file could not be moved to wp-content/uploads.

    Thank you Rajesh.

    Thread Starter wp-newbee

    (@wp-newbee)

    Hi Rajesh,
    I did via ftp, I get this msg file cannot be move to upload/2016

Viewing 15 replies - 16 through 30 (of 67 total)