Forum Replies Created
-
AuthorPosts
-
April 20, 2016 at 8:21 am in reply to: Proudly Poered by WordPressTheme: WEN Associate by WEN Themes. #6044
wensolutions
KeymasterWell, you can find the easy steps to remove the footer info from its documentation.
http://themepalace.com/theme-instructions/wen-associate-pro/#footer-options
Hope this helps!
Note: Since you have purchased the Pro version you are required to post the issues in its specific forum from below link.
wensolutions
KeymasterHello @giuliano
If you want to assign a page to the slider, you should keep in mind that the page should have a featured image in order for the page to show on your slider. If you are sliding three of your pages, each one of the three pages should have the featured image.
If you continue to have this issue please let us know with a screen shot of the issue.Best Regards!!
wensolutions
KeymasterHello @kmevanish
Sorry, there was a slight mistake in above code:
You need to find below code:$contents[ $cnt ]['excerpt'] = education_hub_the_excerpt( apply_filters( 'education_hub_filter_featured_content_excerpt_length', 40 ), $post );
and replace with below code:
$contents[ $cnt ]['excerpt'] = $post->post_content;
And you need to paste only function not the
if ( ! function_exists( 'education_hub_get_featured_content_details' ) ) :
condition.
You need to remove that condition and just copy function only. Removeendif ;
as well
Hope this will do.
If any problem feel free to post.Regards!!!
wensolutions
Keymaster@femke98, sorry for the trouble.
This sounds strange but the Pro theme was already tested and should be mapping your custom settings with the theme option values you had with your free theme.
wensolutions
KeymasterHello @kmevanish
To indent the text in a column you first need to create and activate a child theme. After making a child theme for the parent theme find a file called featured-content.php on Parent theme folder => Inc => hook => Featured-content.php
After that you will find a function education_hub_get_featured_content_details
copy the entire function from parent theme into child theme’s functions.php file and try matching with below code and replace the be code shown below:
Note: Please do edit in child theme.$contents[ $cnt ]['excerpt'] = education_hub_the_excerpt( apply_filters( 'education_hub_filter_featured_content_excerpt_length', 40 ), $post ); to $contents[ $cnt ]['excerpt'] = $post->post_content;
Then you can add your content of the featured page as
<li>College Preparation Classes: TOEFL, SAT, and High School Writing classes</li> <li> Tutoring: ESL, School subjects, and Test prep for all grades</li> <li>After-school program: Homework help and English improvement</li> and it will display an indented sentence for each <li> tag.
Hope this will help to resolve your issue.
Feel free to post if any confusion during the process.Best regards!!
wensolutions
KeymasterHello @kkgoss@yahoo.com
Currently there is no option available to add SHARE button to page.
You can better go to particular plugin support forum and explain you issue that was after you activated the plugin and get some help form there.Best Regards!!
wensolutions
KeymasterHello @vpchamber
Please try and add the following CSS code to Dashboard / Appearance / Customize / Theme Options / Advanced Options.
#featured-slider { max-height: 500px !important; }
And you can add image of any size the slider will crop the image to a perfect fit. But try and add image of height greater than 500 px and width greater than 1000 px though its not a compulsion.
Hope this will help to resolve you issue.
Let me know how it goes.Best Regards!!!
wensolutions
KeymasterHello @kkgoss@yahoo.com
I am a bit confused about your query.
If you want to add more social icon than facebook, twitter and google+ then you can add.
For that you need to add custom links. Follow the steps carefully.
Go to Admin Panel / Appearance / Menus. And then select the menu you are using as Social Menu.
Now add custom links as shown here http://prnt.sc/au0za9
Similarly you can add other social icons as well.
If you are not clear feel free to post.Best Regards!!
wensolutions
KeymasterHello @DiebeMedia
There is option available in the theme for showing or hiding the content.
For that you need to go to Admin Panel / Customize / Theme Options / Home Page.
In this section you will see a check-box Show Blog Listing. So you need to check this check-box to show blog listing or content of a static page in home page.
Hope this will make you clear.Regards!!!
wensolutions
KeymasterHello @kkgoss@yahoo.com
I have inspected you site and noticed that you have used sharebar plugin. So the issue of menus not working might be due to this plugin. Please try deactivating this plugin and see the changes.
If the issue still continues let me know.Regards!!!
wensolutions
KeymasterHello @kkgoss@yahoo.com
Your queries are replied below:
1. Remove links to make photo larger
To remove links to make photo larger you can refer http://themepalace.com/topic/any-way-to-disable-the-hover-over-zoom-on-images/#post-5909 thread as I have recently replied.
2. Remove ovals for eye and link, just leaving the text
3. Keep link active to click onto blog postFor query no. 2 and 3 you need to add custom CSS. Now you need to remove above CSS code as I have provided and copy and paste below code as a whole.
@media only screen and (max-device-width : 1600px) { .post-content { position: absolute; text-align: center; top: 21%; background-color:transparent; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -o-transition: all 1s ease; transition: initial; visibility: visible; width: 100%; padding: 0 20px; z-index: 88; } .post-item:hover .post-content, .featured-posts-item:hover .post-content { bottom: inherit; text-align: center; top: 21%; visibility: visible; width: 100%; } } .fa.fa-eye { display: none; } .fa.fa-link{ display: none; }
Hope this will help to resolve your issue.
Let me know how it goes.Best Regards!!!
wensolutions
KeymasterMake sure you have ‘Show Home Content’ checkbox enabled in your Customizer option panel
Check this documentation for it.
http://themepalace.com/theme-instructions/education-hub-pro/#Howtoshow/hidehomepagecontent?
Thanks
wensolutions
KeymasterHello @kkgoss@yahoo.com
The bit of code that represent line no: 22 is shown below:
<a href="<?php echo esc_url( $featured_image_full_url ); ?>" class="post-thumb popup-link">
which should be replaced by code shown below:
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
Hope this will help you.
Best Regards!!!
wensolutions
KeymasterHello @kkgoss@yahoo.com
If you don’t want the option to click on the photo to make it larger the you need to add custom CSS.
If you have added any CSS from the thread I have referenced then you can remove those and follow the steps below:
You need to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
.
In this section you will see a box to write Custom CSS. In this box copy and paste below CSS.@media only screen and (max-device-width : 1024px) { .post-content { background-color: #1f1f29; padding: 15px; position: inherit; top: inherit; visibility: visible; margin-top: 2px; margin-bottom: 5px; } .post-item a.post-thumb { pointer-events: none; cursor: default; } }
Hope this will help to resolve your issue.
Feel free to post if any confusion.
Let us know hot it goes.Best Regards!!!
wensolutions
Keymaster@kkgoss@yahoo.com and @gino-wiemann, the new version of the Photo Perfect Pro theme is now out with Slider support and more other awesome features added!
Check out its features
http://themepalace.com/downloads/photo-perfect-pro/
Thanks
-
AuthorPosts