Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • You have to use this below class for setting the css of errors and warnings red labels–

    .wpcf7-not-valid-tip{
    height:40px !important;
    }

    place it anywhere in your style.css or admin custom css area. This css works only for latest contact form 7.

    Hi soulluciani01,
    See below carefully to insert labels inside your input box. You have to put placeholder-
    ———————————————————————–
    <div class=”input-group”><div class=”input-group-addon”><div class=”icon-user”></div></div>[text* text-300 class:form-control placeholder “You name”]</div>

    See below carefully to send the correct email-
    ———————————————————————–
    Go to mail tab in contact form and put the new variable which are shown in your new textbox like- You will be seeing “from” label and “input box”, put these new variables in front of “from” label values–
    from-[text-300]

    and differentiate each variable not to do same

    Hi santosh santu

    You have to use media queries for different devices.
    https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries
    you can check responsiveness of your website with below url-
    http://mattkersley.com/responsive/

    @justin Greer ok

    Hey
    First you have to check the database connection
    Go to WP Options and replace your (Home and site) url with current domain url or directory.

    Secondly you have to update permalinks

    Hey edit my code and change it according to your needs
    Here it is complete example of custom post and save the post.

    <?php
    /******************************************************Custom Recipe Post Type************************************************************************/
    
    add_action( 'init', 'register_cpt_Recipe' );
    function register_cpt_Recipe() {
    
        $labels = array(
            'name' => _x( 'All Recipe', 'Recipe' ),
            'singular_name' => _x( 'All Recipe', 'Recipe' ),
            'add_new' => _x( 'Add New Recipe', 'Recipe' ),
            'add_new_item' => _x( 'Add New Recipe', 'Recipe' ),
            'edit_item' => _x( 'Edit Recipe', 'Recipe' ),
            'new_item' => _x( 'New Recipe', 'Recipe' ),
            'view_item' => _x( 'View Recipe', 'Recipe' ),
            'search_items' => _x( 'Search Recipe', 'Recipe' ),
            'not_found' => _x( 'No Recipe found', 'Recipe' ),
            'not_found_in_trash' => _x( 'No Recipe found in Trash', 'Recipe' ),
            'parent_item_colon' => _x( 'Parent Recipe:', 'Recipe' ),
            'menu_name' => _x( 'All Recipe', 'Recipe' ),
        );
    
        $args = array(
            'labels' => $labels,
            'hierarchical' => true,
    
            'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'page-attributes' ),
            'taxonomies' => array( 'category', 'post_tag', 'page-category' ),
            'public' => true,
            'show_ui' => true,
            'show_in_menu' => true,
    
            'show_in_nav_menus' => true,
            'publicly_queryable' => true,
            'exclude_from_search' => false,
            'has_archive' => true,
            'query_var' => true,
            'can_export' => true,
            'rewrite' => true,
            'capability_type' => 'post',
    		'taxonomies' => array('recipe_type')
        );
    
        register_post_type( 'Recipe', $args );
    
    }
    
    function add_recipe_type_taxonomies() {
    
    	register_taxonomy('recipe_type', 'review', array(
    		// Hierarchical taxonomy (like categories)
    		'hierarchical' => true,
    		// This array of options controls the labels displayed in the WordPress Admin UI
    		'labels' => array(
    			'name' => _x( 'Recipe Category', 'taxonomy general name' ),
    			'singular_name' => _x( 'Recipe-Category', 'taxonomy singular name' ),
    			'search_items' =>  __( 'Search Recipe-Categories' ),
    			'all_items' => __( 'All Recipe-Categories' ),
    			'parent_item' => __( 'Parent Recipe-Category' ),
    			'parent_item_colon' => __( 'Parent Recipe-Category:' ),
    			'edit_item' => __( 'Edit Recipe-Category' ),
    			'update_item' => __( 'Update Recipe-Category' ),
    			'add_new_item' => __( 'Add New Recipe-Category' ),
    			'new_item_name' => __( 'New Recipe-Category Name' ),
    			'menu_name' => __( 'Categories' ),
    		),
    
    		// Control the slugs used for this taxonomy
    		'rewrite' => array(
    			'slug' => 'recipe_type', // This controls the base slug that will display before each term
    			'with_front' => false, // Don't display the category base before "/locations/"
    			'hierarchical' => true // This will allow URL's like "/locations/boston/cambridge/"
    		),
    	));
    }
    add_action( 'init', 'add_recipe_type_taxonomies', 0 );

    it was simply the SITE URL left blank in Settings -> General
    Filled with mu site URL, everything started working again.

    You have to enabling WP_DEBUG in wp-config.php, and it may this error:
    “Notice: Undefined index: host”

    Try—

    how to use checkboxes on register page in theme my login? and after registration it shows the values on profile page also? any help?

    Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0

    Fatal error: Unknown: Failed opening required ‘E:/xampp/htdocs/index.php’ (include_path=’.;E:\xampp\php\PEAR’) in Unknown on line 0

    any help?

    I get confliction within my quform plugin is is not edit and update and save. any help?

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