Neeqah - Wedding WordPress Theme
Themeforest Neeqah - Wedding WordPress Theme WordPress Theme
We encourage you to spend a minute of your time to confirm your purchase at http://www.themewarrior.com/purchase-confirmation/.
Neeqah is probably the best wedding theme for WordPress we’ve build so far. It comes with tons of features to make it easy for you to setup your wedding site.
Neeqah is simply amazing and easy to work with. The homepage is fully widgetized, which means you can control the homepage layout using simple drag and drop.
Theme Features
- Easy to use yet a very powerful theme options (powered by ReduxFramework)
- Unlimited colours
- Responsive layout
- 5 custom post types (Slideshow, Gallery, Events, Accommodation, History)
- Count Down & Up Timer
- Custom Page Templates
There are 9 additional page templates that comes with Merit theme, they are: Homepage, Blog (Normal), Blog (Grid), Gallery, Events, History, Accommodations, Guestbook and Full-Width page templates. - Custom Widgets
There are 9 custom widgets to help you easily setup the theme - Lots of useful shortcodes
- Child theme support
- Localized Translations & RTL support
- Google Analytics integration
- Custom logo & favicon
- prettyPhoto lightbox
- Filterable gallery
- Homepage slideshow
- AJAX RSVP form
- Wedding events
- Accommodations
- Guestbook
- Relationship history powered by History post type
- XML demo content
- WordPress theme Customizer support
Purchase Confirmation
We encourage you to spend a minute of your time to confirm your purchase at http://www.themewarrior.com/purchase-confirmation/.
Checkout Other Wedding Themes from Us
Changelog
November 21st, 2016 — Version 1.0.7
- Update jQuery plugin library files
- Update TGM Class file
- Fix Gallery widget heading in mobile devices
- Fix sub menu text being centered
February 7th, — Version 1.0.6
- Center main navigation
- Adjust Counting Down widget layout on mobile devices
- Center .posts-grid items
- Fix header margin when ‘Front page displays’ haven’t been set under Reading Settings
June 8th, 2015 — Version 1.0.5
- Fix map control in Warrior Map widget
- Add missing widget title & sub title in Warrior Map widget
- Fix Event date & time field
- Fix main slider opacity issue in theme options
March 19th, 2015 — Version 1.0.4
- Fix wrong single accommodation page title icon
- Make thumbnails in Accommodations and Events clickable
- Add Gift post type & widget
- Add Bridesmaid & Groomsmen post type & widget
March 6th, 2015 -- Version 1.0.3
- Fix about couple alignment when a very short description text are used
- Fix Countdown and RSVP widget parallax background
February 17th, 2015 -- Version 1.0.2
- Modify logo position
- Fix logo position in mobile device
February 13th, 2015 -- Version 1.0.1
- Fix issue with header background image
- Update ZillaShortcodes to latest version
February 13th, 2015 -- Version 1.0.0
- Theme is released


I just installed the Theme and am getting an error message when trying to update the Neeqah plugin from 1.0.0 to 1.0.2, which is required in order to activate it.
ReplyDeleteHello,
ReplyDeleteGo to Plugins > Editor > on top right: Select plugin to edit > Neeqah Plugin > Edit version from 1.0.0 to 1.0.2 > Save, for example see image bellow:
http://imgur.com/a/jpnqy
Hello,
ReplyDeleteI would like to know if it is possible to hide the post date.
It is very confusing as for the events section for example, the home page will display the name of the event with the date of the post below. Therefore, it makes it look like the event is planned for another date.
Do someone have a solution for this ?
Many thanks in advance,
Hello.
ReplyDeleteIt’s possible. Please add the following css code via Theme Options > Appearance > CSS Code:
.type-event .meta span:first-child {
display: none;
}
Hi,
ReplyDeleteHow can I just have a simple picture instead of the slideshow ?
Hello,
ReplyDeletePlease open /neeqah/header.php, find these lines:
<div class="slides-container">
<?php
// Let's fetch the slideshow images
$args = array(
'post_type' => 'slideshow',
'post_status' => 'publish',
'showposts' => -1
);
$slideshow_query = new WP_Query();
$slideshow_query->query($args);
if ( $slideshow_query->have_posts() ) {
while( $slideshow_query->have_posts() ) {
$slideshow_query->the_post();
if ( has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large' );
echo '<img src="'. $large_image_url[0] .'" alt="" />';
}
}
}
wp_reset_postdata();
?>
</div>
replace with
<div class="slides-containers">
<img src="http://themewarrior/neeqah/wp-content/uploads/sites/14/2015/02/slider-image-3-1024x591.jpg" style="width: 100%" />
</div>
Replace image src value with your valid image url…
Hello,
ReplyDeleteSorry to ask a stupid question but i’ve found an answer to what I’m looking for that says :
“Open neeqah/single-accommodations.php, find and remove this code:
<?php get_sidebar(‘accommodations’); ?>”
But i don’t even know what you mean by open neeqah/... is that on the admin ?
Thank you for your help
Hello.
ReplyDeleteSorry, you can open the file via Admin > Apperance > Editor, click single-accommodations.php.
Or you can open via FTP client.
I’m sorry but there is no Editor under Appearance in my admin.
ReplyDeleteOnly :
Theme
Customize
Widgets
Menu
Header
Background
Install Plugins
Hello.
ReplyDeleteI guess, the editor has been disabled for security reason. You can talk to your server provider.
Can you log in to your sever using FTP client?
Hello,
ReplyDeleteI have five groomsmen and on the demo there are 5 in one line but on my website they go on two lines.
Do you know how to fix that please ?
Hello.
ReplyDeleteMake sure you have at least 5 entries of groomsmen and bridesmaid.
I do have 5 entries but 4 of them are on the same line and the last one is on the line below
ReplyDeleteHello.
ReplyDeleteCan you let me know your site url?
Hello! I am trying to install this theme and as I was installing the required Neeqah plugin it says it needs to be updated, but every time I try to update it does not do anything. I have tried to uninstall through the UI, but it doesn’t work. When I remove the plugin directory from wp-content and reinstall and then try to update it still doesn’t work. Please advise on how I can get the latest updated Neeqah plugin.
ReplyDeleteThank you!
Hello.
ReplyDeleteGo to Admin > Plugins > Editor.
Top right select neeqah plugin
On editor left side, replace Version: 1.0.0 with Version: 1.0.2
Oh… LOL so this file is incorrect then. Changing this doesn’t update the plugin… it just tells wordpress that its the updated. I see…
ReplyDeleteThanks for the prompt response!
It’s ok followed above thanks
ReplyDeleteHello,
ReplyDeleteHow can you change the footer text “made with love copyright 2017” ?
Many thanks
Hello.
ReplyDeleteGo to Admin > Appearance > Editor. > Edit footer.php, find this line:
<p class="copyright"><?php printf( __( 'Made with love. Copyright %1$s', 'neeqah' ), date_i18n('Y') ); ?></p>
Hello,
ReplyDeleteI just purchased and Installed Neeqah Theme and it shows that Neeqah Plugin Version 1.0.2 is required, the installed version 1.0.0 and Im not able to update it. Please advise.
Regards
Hello.
ReplyDeleteGo to Admin > Plugins > Editor
On the top righ, select: Neeqah Plugin
Find this line:
Version: 1.0.0
Replace with
Version: 1.0.2
Hi, i’m having a problem with the Accommodations. I just created from the dashboard 3 Accommodations and it’s ok. But how can i do to create each single page with description and see on right sidebar the other accommodations? Because when i go on site and if i click on one accommodations than will appear “Page not found”. Thanks for your reply.
ReplyDeleteHello.
ReplyDeleteTo identify the issue, please open a ticket here: https://ticket.themewarrior.com/