Forum Replies Created
-
AuthorPosts
-
wensolutionsKeymaster
Hello @caleb-sck,
The features you are mentioning isn’t supported by this theme. Please post this issue in the support forum of Photo Perfect Pro: http://themepalace.com/forum/photo-perfect-pro/Thanks!
wensolutionsKeymasterHello @scorbelli,
Glad to hear that your previous has been resolved 🙂Now, to link the featured image to the post, just replacing some codes will do it.
Replace these lines in content-search.php of child theme:
<div class="entry-summary"> <?php if ( has_post_thumbnail() ): ?> <?php the_post_thumbnail( 'medium', array( 'class' => 'aligncenter' ) ); ?> <?php endif ?> <?php the_excerpt(); ?> </div><!-- .entry-summary -->
with these:
<div class="entry-summary"> <?php if ( has_post_thumbnail() ): ?> <a href="<?php echo get_permalink();?>"> <?php the_post_thumbnail( 'medium', array( 'class' => 'aligncenter' ) ); ?> </a> <?php endif ?> <?php the_excerpt(); ?> </div><!-- .entry-summary -->
And for ‘readmore’,
Just go to Customizer > Themes Options > Blog, and configure the readmore text according to your requirement.Hope that helps resolving your issue.
Thanks!
wensolutionsKeymasterHello @Scorbelli,
Looks like this issue has already been resolved in this thread: https://wordpress.org/support/topic/featured-image-is-not-found-in-search-results?replies=5Kindly post for any further confusion.
Thanks,
wensolutionsKeymasterHello @Stephen, by default the Browser button links to your site-url/blog which may results to 404 Page not found because this page is not physically created in your backend.
To update this in your own, Go to Appearance -> Customize -> Home/Front Blog Options and enter the valid link that you want to redirect the Browse button after clicking it.
This will resolve your current issue.Thanks, have a good day !
wensolutionsKeymasterHi @delfinaki58
Theme provides this flexibility to control featured image in single blog post.
In your Dashboard, go to your particular post editor section. At the bottom you will find Featured Image Alignment options from which you can select whatever option you would like as requested above. Available options are Full , Right , Left and No image.
Hope this fulfills your need.
Thanks
wensolutionsKeymasterHello @anne,
Since theme itself is not a ‘One Page’ theme, it has no such features as you have mentioned. However, you have to go through customization of some related theme files by making a Child Theme to override the default feature.
Trick would be to customize the file inc\hooks\homepage-contact.php by copying into your Child Theme and add new ‘id’ to
<section class="wrapper wrap-contact">
that would refrence the menu to this section. Similarly, customize other sections files inside /hooks folder for which you would want to scroll to from menu items.Alternatively, if you yet not comfortable with editing codes in your own then we would recommend you to Hire a Customizer to customize it safely.
Best regards,
February 19, 2016 at 12:40 am in reply to: Service and History Sections when using pages vs. posts questions #1484wensolutionsKeymasterHello @anne,
As the theme has no such features as to add more blocks for the service sections, some code customization is needed. For that it is recommended create a Child Theme. However, the customization is not that basic, you may need to Hire a Customizer for proper customization (as per your need) as well as to maintain the overall design which is required after customization.Thanks,
wensolutionsKeymasterHello @Stephens,
The features you are mentioning isn’t supported by this theme. However, if you need those features we have Biography theme in free and pro version. After activating either of the two theme: Go to Customize -> Header Text Slider -> Tick the Enable slider. Now Select pages for slides. Before Selecting Pages,you should have create new pages like “Administrative Manager”, “Professional Developer”, and “Customer Support”.
This should be the trick to appear the Text of your selected pages on the slider.
You can find details regarding the Biography theme: http://themepalace.com/shop/wordpress-themes/biography/
Let us know if you have any queries.
Regards,wensolutionsKeymasterGlad that it worked. You’re welcome !
wensolutionsKeymasterNo problem 🙂 . Let us know if you have any problem in using a theme. Thanks.
February 17, 2016 at 7:14 am in reply to: Bizlight Pro theme problems by displaying on mobile phone #1453wensolutionsKeymasterHi,
Go to Appearance -> Customize -> Theme Options -> Custom CSS in your dashboard
And put the following CSS code:
@media screen and (max-width: 479px) .bx-viewport, .bx-wrapper { height: 50vh !important; }
Hope this helps!
wensolutionsKeymasterHello @george.prowse,
Currently there is no dummy data available. So you can assign widgets in the widgets area. There are number of widgets that the theme offers which you can use to make the theme look like on the demo. For that go to, Appearance > Widgets. For further assistance, check out the theme documentation: http://themepalace.com/theme-instructions/wen-business/Hope that helps you some what.
Thanks,wensolutionsKeymasterHello @farid.dokuchaev,
Sorry for the trouble you are having. Anyways, try this code out.@media only screen and (max-width:767px){ #mobile-trigger{ display: none !important; } #mobile-trigger-top { display: block !important; } }
Please let us know if it worked.
Thanks!
wensolutionsKeymasterHello @farid.dokuchaev,
Remove the earlier code from Custom CSS and copy following code direct to your CSS editor
@media only screen and (max-width:767px){ #mobile-trigger{ display: none; } }
Hope this helps and let us know, for any further assistance.
Regard,wensolutionsKeymasterThe maximum upload size is controlled at the server-level, not by WordPress. Here are three ways you can increase the upload limit:
1. If you can edit or override the system
php.ini
file, increase the maximum file and post sizes. For example,upload_max_filesize = 100M ;
andpost_max_size = 100M ;
2. If you cannot edit or override the system
php.ini
file, addphp_value upload_max_filesize 100M
andphp_value post_max_size = 100M
to your.htaccess
file.3. If neither of these work, it’s time to ask your hosting provider to increase the maximum file and post sizes on your account. Keep in mind that most decent hosting providers allow this, and If your hosting provider won’t accommodate you, perhaps it’s time to find a new hosting provider.
(in the above examples, the limit is set to 100MB)
-
AuthorPosts