picaporte
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Maskitto Light] Font Awesome Icons don't workHi,
I had the same problem, and it resulted to be that the fontawesome package pre-installed within the theme is not updated. Probably you are trying to use one of the newly added icons, which is not included in your current fontawesome database. So, the solution is to download the current version for fontawesome icons (v. 4.7.0 as per this post’s date), and install it to the appropiate Maskitto theme directories, deleting the old fontawesome files and pasting the new ones instead. I did it manually, and worked perfectly, but you must be careful to identify all the directories using fontawesome files, otherwise it won’t work.
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Responsive mapInsert the mappress shortcode where you want it to show as usual, adding the width parameter: [mappress mapid=”2″ width=100%]
Change id “2” with your map id
Try this:
1.- Disable and re-enable the Google Maps Geocoding API.
2.- Add an * instead of a domain in the referrers field.Forum: Fixing WordPress
In reply to: Developing a splash page/animated opening web page?Hi Greg
The site you’re looking at is not using WordPress, it uses flash programming.
I don’t know if there is any plugin, theme, or combination of both, that could give you a similar effect, probably with additional heavy code customization. Try check out other sites using WP with animated landing pages.
Here you have some nice tools to check the theme and (main) plugins used by a site built on wordpress, if so, or the technologies used instead of:
https://www.wpthemedetector.com/
https://whatwpthemeisthat.com/
https://w3techs.com/sites
https://builtwith.com/Good luck!
Forum: Themes and Templates
In reply to: [Customizr] Removing "Powered by WordPress" from the footerYou can also solve both issues (“Powered by WordPress” and middots) using the following code in the child theme functions.php file, this way you’ll keep the changes when customizr theme is updated:
add_filter( 'tc_wp_powered', 'tc_fotograf_wp_powered' ); function tc_fotograf_wp_powered() { $text_output = ''; return $text_output; }
It worked for me ??