robokev
Forum Replies Created
-
I am getting it on 2 om my sites as well.
Forum: Reviews
In reply to: [Auto Set Admin Colour on Staging and Dev] Excellent supportLOL. I figured I was lucky!
3 minutes to respond initially, and a further 21 minutes to fix it? You really know how to take your time! LOL.
Thanks for the quick turn-around.
Cheers.
Kevin
I found out what was causing this problem for me and wanted to post the answer in case somebody else hits upon this thread…
In my case the issue was that I was running the Privacy Badger browser plugin (https://www.eff.org/privacybadger). When I disabled it for my test site, the missing icons appeared!
Did you get an answer to this? I have the same problem with the Hello Pro theme.
Forum: Plugins
In reply to: [Social Proof (Testimonial) Slider] 2.0 Update Issue: widget code displayedI think I found the problem for you.
Line 304 of class-social-proof-slider-widget.php says:
<?
But should say:
<?php
Forum: Plugins
In reply to: [Redirection] New website and redirectionsYou should only have to set up the Redirect on the new website.
Assuming you will use the same domain name for the new site, then users going to the same domain will end up at the new website once it comes online. It is the new website that needs to handle the redirects.
For example, suppose your old website was https://www.example.es. When you bring your new site up and associate the domain name with it, all your visitors going to https://www.example.es will end up at your new site.
Suppose the old site had a blog page at https://www.example.es/posts, but the new site has it at https://www.example.es/blog. Then your redirect at the new site would be set up to intercept “/posts” and redirect it to “/blog”.
If you can capture the pattern of the old website pages in a regular expression, you should be able to redirect to your new pages. Put the regular expression in the Source URL and check the Regular Expression check box, then enter the Target URL.
Forum: Plugins
In reply to: [Redirection] Redirects created when Event Calendar event is updatedI was able to resolve this by going into the Options page of the Redirection plugin, and setting “Monitor changes to posts” to “Don’t monitor”.
Thanks. I will check into this.
Our site is hosted on a baseline Bluehost VPS which is provisioned with Apache.
Forum: Plugins
In reply to: [File Away] Columns only 1 character widthThanks. I followed the directions on the Tutorials tab for Custom Table Styles to create my own custom table style based on Minimalist.
I added the following to the top of it…
body table[id^="ssfa-table"] { table-layout: auto!important; }
…and it fixed my 1-character column issue.
Forum: Plugins
In reply to: [File Away] Columns only 1 character widthAfter fiddling with it a bit, it appears that I needed to edit fileaway-styles.css and change the lines:
body table[id^="ssfa-table"] { padding: 0; width: 100%; }
to:
body table[id^="ssfa-table"] { table-layout: auto!important; }
Was this the correct and proper way to do this?
Forum: Plugins
In reply to: [File Away] Columns only 1 character widthGrateful if you would advise which CSS file I need to edit, and if I am to change an existing line or add the corrected line somewhere in the file.
FYI, I am using the minimalist table theme.
Forum: Plugins
In reply to: [File Away] Columns only 1 character widthI am having the same problem. Can you describe what the fix was?