Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Listing portfolio itemsIF u need display portfolio items based on category wise u need taxonomy query argument.
Review this code.
http://code.tutsplus.com/tutorials/wp_query-arguments-taxonomies–cms-23090
@cais,
In case my client purchase pro version how to override this template.
I wants need some changes in template. so how to assign own template.[ngg_images album_ids=”1″ display_type=”photocrati-nextgen_pro_grid_album”]
Now 1 & 2 issue fixed.
now i have using this code.now need how to add template options hear ?>
[ngg_images source="recent" display_type="photocrati-nextgen_basic_thumbnails" disable_pagination=1 images_per_page=6 show_all_in_lightbox=1]3) Now my site is not live server.
I have seen gallery setting on not found image scanning option.
When i active plugin as network active display this options.but this one required to active as network we need for some subsites.
Hello Cais,
I need like this,
http://i.imgur.com/q9BZ4nv.jpgNow need display 6 recent images on homepage and on click display popup.
can u please provide me options with shortcode.
Any selected album or gallery threw coming images.2) And how to manage own template on this type of shortcodes
https://www.imagely.com/docs/nextgen-gallery-shortcodes/Otherwise i need homepage on six latest images how to display?
Forum: Fixing WordPress
In reply to: search hover effectuse this code on your site.
http://codepen.io/ravipatel/pen/MyxRyzForum: Fixing WordPress
In reply to: search hover effect@winock,
This on created based on jquery & css format.Are u need for wordpress need customization.
Forum: Fixing WordPress
In reply to: Switching from .NET to wordpress site@matinmujawar,
Any advance functionality in .net site so check this one u made easy in wordpress or not.– whats possibility & not make list.
Forum: Fixing WordPress
In reply to: Creating a landing page1)Copy header.php assign name header-landing.php & footer.php assign name footer-landing.php
2)Copy page and create template landing.php:
Assignget_header('landing');
Assignget_footer('landing');3)Create page and assign template.
4)Go wp-admin->setting->reading->Assign landing page as frontpage.
5)need seperate css:
go function.php add this code:function resilientbridgeport_scripts_styles() { $temp = get_page_template_slug( $post->ID); if($temp == "page-templates/landing.php"){ wp_enqueue_style( 'patelextensions-style', get_stylesheet_directory_uri().'/css/custom.css' ); } } add_action( 'wp_enqueue_scripts', 'resilientbridgeport_scripts_styles',20);6) Go main header file header.php
Add this code on top:if(!is_admin() && !current_user_can( 'manage_options' ) && !is_front_page()){ wp_redirect( home_url()); exit; }Remove unwanted code on your own header-landing.php and footer-landing.php
Forum: Fixing WordPress
In reply to: Creating a landing page@canteenstories7,
Now only need landingpage or with other pages arrived?Forum: Fixing WordPress
In reply to: Loading Bar when loading website@rmillerdsb,
Are u wants remove this loading bar ?@mandor11, May be come after login, When i have seen your homepage and find this “Warning” but not seen.
Forum: Fixing WordPress
In reply to: Password Protected page going to 404 ErrorAdd this code on function.php then says this one working or not?
function my_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $o = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> ' . __( "To view this protected post, enter the password below:" ) . ' <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" maxlength="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" /> </form> '; return $o; } add_filter( 'the_password_form', 'my_password_form' );Forum: Fixing WordPress
In reply to: Update Problem WP 4.5.2@brian,
I have seen again this one fixed please remove all cache.Thanks,
Ravi patel