robinsalota
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to change font in expositio free wordpress theme?@stephen i respect forum rules and i only mean in contacting is to reply on this topic only.
@nitika
for adding new theme to your website firstly you need to select a font from Google Fonts.
Once you have selected you can easily setup it to your theme by one of the plugin or by manually editing header.php in case you choose to go with
<link rel=’stylesheet’….> to insert font style or you can also edit style.css in that you need to choose @import method.Forum: Fixing WordPress
In reply to: SSL Certificate HTTPS@sterndata _ Yes Agree.
Forum: Fixing WordPress
In reply to: Center image in widget (textwidget)<center><img src=’your source for file’ al=””></center>
Glad to help You.
Forum: Fixing WordPress
In reply to: SSL Certificate HTTPS@strendata great solution.
but Search and Replace is unable to change source code.
That they need to update manually ??Forum: Fixing WordPress
In reply to: my featured pictures appears much bigger on the websiteHi its the issue that featured image is showing the actual size of your picture. It sometimes happen that you change image somewhere else but the image showing on pingdom results is coming from different area.
I have just tested it from inspect tool as well the images are actually in bigger size, you need to compress them or downgrade quality a bit so you can get good score in Pingdom.
Let me know if you need any further help in improving this speed i can send you detailed description to do thisForum: Fixing WordPress
In reply to: Photos not loading and/or showing error messagesI think Your issue is already fixed – Right?
Its working fine now.Forum: Fixing WordPress
In reply to: Static home page is not the home/index pageHi you need to set Static front page to HOME and make sure your Page template is Homepage or desired which they set for homepage in theme.
I am sure this will help you ??Forum: Fixing WordPress
In reply to: How to change font in expositio free wordpress theme?Hi i can help you in this.
Do you have previous experience in wordpress so i can help you in making these changes to your website?
If not you can contact me i can help you in getting it.Forum: Fixing WordPress
In reply to: Woocommerce Hide Price Match when price is emptyHi rather then the current solution you can quickly hide that on DOM with css.
Can you share website link so i can send you exact code which you can put to fix this!Forum: Fixing WordPress
In reply to: Mobile Site Not LoadingHi this can be quickly fixed by adding manual redirection.
Just put index.html file in the root directory and in the index.html check if user are visiting from mobile or Desktop and redirect them accordingly
I will prefer you to check pixels so users can be redirected quickly.
that will maintain your website speed too.Forum: Fixing WordPress
In reply to: How to upload interactive graph on a separate page of the website?Hi i have quick solution for you.
Simply make a new page template with header and footer only and put content in the middle
Structure will be like this :
– header.php
– conten()
– footer.phpnow when adding new page use New page Template which you just made with following structure and put your iframe there.
I already did this with few flash games solution and i am sure this will help you too ??
Let me know if you face any issue in this processForum: Localhost Installs
In reply to: Crop Header image not workingHi this is the issue with the Media Library path,
Simply update it from settings and it will work for sure.
You need to check settings > Media there you can see how they manage images in server. If you used custom path roll it back to default that can help you in solving this issue.are you able to share source code or snip for that page where you are getting error? then it can help in finding the exact reason as well.
Thank YouForum: Fixing WordPress
In reply to: SSL Certificate HTTPSHi cedaly,
Jason is right the issue is with your links to website for example google fonts, Current images in Revolution slider maybe with “https://….” url not with https:// url that is why web browser is unable to get and access is blocked for the unsecured files.
To fix this simply hire a developer, if you already have and have experience with wordpress then just dig into the source and find the font urls and update those with the https link.
It will surely help.
If you can share website link then i can help you in better way ??Thank You
Forum: Fixing WordPress
In reply to: Center image in widget (textwidget)Hi, For centering image in widget
just use the following code<center><img src='your source for file' al=""></center>
if this not helps then add class to your image any class
for eg<img src="" class="center-img">
then add this following css in your custom css, if you have no option for custom css then place it in your Style.css file.
To access style.css goto Appearance > Editor.center-img{display:block; margin:auto}