Jordon Rupp
Forum Replies Created
-
This would be great to see. Just like the current output for posts and pages but have the ability to select from CPTs in the backend too. Great plugin, thanks!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] !ERROR! division by zeroBrilliant, that did the trick. Thank you!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] !ERROR! division by zeroThanks, Tobias! I’m still receiving
!ERROR! division by zero
for the formula=IF( F2>0, D2/F2, 0 )
when cell F2 has a value of zero.In Excel if you choose “Show Formulas” in the Formulas section, then your CSV file should contain the actual formulas which you can then import into your table in TablePress. Open the CSV in a text editor to check this before importing, though. Working with the formulas and auto-populating the cells should be easier in Excel.
Forum: Reviews
In reply to: [Simple Social Icons] Adding a houzz iconThis should do the trick. Update your SVG file with the following.
Also update both “viewBox” values if you are only copying and pasting the value after “path d”<svg width="100%" height="100%" viewBox="0 0 1000 1000" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"> <defs> <symbol id="social-houzz" viewBox="0 0 1000 1000"> <title>Houzz</title> <path d="M500,663l282.8-163v326.5L500,990V663z M217.2,500v326.5L500,662.9L217.2,500z M500,10v326.5L217.2,500V173.5L500,10z M500,336.5l282.8-163v326.5L500,336.5z"/> </symbol> </defs> </svg>
Reference the plugin author’s repo here for more info: https://github.com/copyblogger/simple-social-icons/wiki/Add-an-additional-icon-in-version-2.0
In your first post, also make sure to change:
plugin_dir_url
toget_stylesheet_directory_uri
if you’re adding this code to your child theme and not to a site-specific pluginIf you’re not using a child theme, then you might need to use:
get_template_directory_uri
- This reply was modified 7 years, 9 months ago by Jordon Rupp.
Thanks!
That got me too. My development site was fine but once I migrated to production and it was the first time that domain used the Maps API it gave an error instead of the map: “Oops! Something went wrong”
It only affects domains not active before June 22, 2016.
Basically, if you weren’t already using the Maps API on your domain before June 22nd, 2016, you need to get an API key to get rid of the error.
Here’s the post that pointed me in the right direction: https://www.latecnosfera.com/2016/06/google-maps-api-error-missing-keymap-error-solved.html
Thanks for looking into this!
Temporary fix:
1. Get a key here: https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key
2. Around line 102 in: plugins/simple-google-map-short-code/simple-google-map-short-code.php
add:
&key=Your_API_Key
at the end of:
'//maps.google.com/maps/api/js?sensor=false
Give it a few minutes, new keys may take a moment to activate.