Forum Replies Created
-
AuthorPosts
-
wensolutions
KeymasterHello @anthony,
How are you doing?
I tested your site and found that it is updated to WordPress new verion 4.5. There is currently a known issue with WordPress 4.5. For the time being, you can try to put the following code in your child theme’s functions.php file.if (!is_admin()) { wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3'); wp_enqueue_script('jquery'); }
Here are some guides in case you haven’t made Child theme before:
Note: As WordPress fixes the issue, you can remove the above code.
Hope this helps to resolve your issues.
Thankswensolutions
KeymasterHello @solte98,
There is currently a known issue with WordPress 4.5. For the time being, you can try to put the following code in your child theme’s functions.php file.if (!is_admin()) { wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3'); wp_enqueue_script('jquery'); }
Next, Go to Appearance-> Customize-> Theme Options->Custom CSS and paste the following code:
.bx-controls-direction{ display:none; }
Click Save and Publish to save.
Here are some guides in case you haven’t made Child theme before:
Note: As WordPress fixes the issue, you can remove the above code.
Hope this helps to resolve your issues.
Thankswensolutions
KeymasterHello @kmevanish,
Hope you are doing good.
Can you please share your site url so that we could have closer look at it?Thank you.
wensolutions
KeymasterEach 3 blocks in services section will be counted and assign the different images that you write.
wensolutions
KeymasterSince the blocks in Service are queried in loop image can be statically given in loop by comparing the item.
Hints : replace div block
<div class="icon-container"> // </div>
with following conditions
if($i == 1){ <div class="icon-container"> <img src="image1.png"> </div> } if($i == 2){ <div class="icon-container"> <img src="image2..png"> </div> } if($i == 3){ <div class="icon-container"> <img src="image3.png"> </div> }
This should do the trick !
wensolutions
KeymasterWell, you can customize bizlight\inc\hooks\homepage-service.php file from the path according to your requirement.
Note : Consider making a Child Theme to override the parent behavior preventing any loss from future updates.
Thanks
wensolutions
KeymasterHello @Charles.brandreth,
As you can see all the div have same class so it’s not possible to add different images for all the service icons. So, you might consider Hiring a Customizer to make your theme capable of different service images.Let us know if you have any further queries.
Regards
wensolutions
KeymasterHello @charles.brandreth,
Have you tried changing the font awesome icon from Customize-> Home/Front Service section-> Select Service from Page->
Icon 1: write fa-desktop inside it.
Icon 2: Write fa-bug inside it.
Icon 3: write fa-laptop inside it.Note: You can write your own icon code inside Icon section.
This should be the trick to show three different services section icons.Best Regards!!
wensolutions
KeymasterHello @cherylr,
You can change the font size of any section targeting the class/id of that section. For example if you want to increase font-size of paragraph you need to go to Appearance-> Customize-> Theme Options-> Advanced Options-> Custom CSS and write following code:.entry-content p{ font-size:1.3em; }
I have used 1.3 em font size, you can change the value as required.
Thankswensolutions
KeymasterHello @rsruss67
Well currently we have noted down this as an issue which will be fixed in next update.
Temporary solution for this will be through custom CSS.
To add custom CSS 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. Now copy and paste below code in that box.@media only screen and (max-width: 767px){ .main-navigation ul { background: #993333 none repeat scroll 0 0; } } @media only screen and (max-width: 767px){ .menu-toggle { background-color: #993333 !important; } }
Hope this will help to resolve you issue.
Let me how it goes.Best Regards!!!
wensolutions
KeymasterHello @Chefmom520
Can you please share your site URL so that I can debug your issue.
Please refer the section of the site as well from where you want to remove the author.Best Regards!!!
wensolutions
KeymasterHello @Charles.brandreth
Can you please share your site URL so that I can debug you issue in much details.
Regards!!!
wensolutions
KeymasterHello @Owen123
The customization you are referring seems to be pretty easy but the theme is designed in such a way that replacing the divs is not quite easy as just like cut and paste. This needs high customization can be done by creating child theme.
Hope this will make you clear.Best Regards!!
wensolutions
KeymasterHello @CherylR
Can you please share your site URL with little much description about your issue.
Please tell me which section of the text’s font size you want to change?Regards!!!
wensolutions
KeymasterHello @CherylR
Yes, of course you can create child theme of any pro version of the theme. Further it will not prevent you from installing available theme’s updates.
So you can freely create child theme and able to install any available theme’s update.Hope this will make you clear.
Regards!!
-
AuthorPosts