Forum Replies Created
-
AuthorPosts
-
December 1, 2015 at 11:05 pm in reply to: Background image of color section not showing in Chrome, website lost content #545652
I just wanted to add that I have the exact same problem as Gudi. It’s a little frustrating because of how popular Chrome is. I hope a solution is found soon.
Thank you!
Thank you for this, I’ll test it when I get time and see if it works.
Creating a form from scratch and using a code block with the following code seems to work, but how could I put this into the theme so that it’ll work with other forms? The author here says that you can put it into the footer.php file: https://nerdygoodness.wordpress.com/2012/07/13/auto-searching-for-places-using-google-maps-javascript-api-v3-places-autocomplete/
<!– Google Maps API Stuff –>
<script src=”http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places” type=”text/javascript”></script>
<script type=”text/javascript”>
function initialize() {
var input = document.getElementById(‘location_field’);
var autocomplete = new google.maps.places.Autocomplete(input);
}google.maps.event.addDomListener(window, ‘load’, initialize);
</script>
<!– Ends Google Maps API Stuff –>
<form>
Location: <input type=”text” id=”location_field” name=”location_field” />
</form>I take that back, I played around with that last link and was able to get it to work! It just needed a direct path to my ico file. Thanks for all the help!
Hi Yigit,
While those links are great, and I’ll use them to change the login logo, what I’m actually looking for is to add a favicon to the WordPress Dashboard area. The area you get to after you login, not the area itsself. It seems simple, but nothing will work.
This link shows what I’m trying to do: http://www.trickspanda.com/2014/01/add-favicon-wordpress-admin-panel/
Thanks,
-DallasHi there!
Oh no, I mean in the back-end. As in the WordPress Dashboard/Admin area. I’ve tried many things that are similar to the guide detailed at: http://wordpress.stackexchange.com/questions/138098/how-to-add-favicon-to-my-site-in-both-front-end-and-admin-panel
I haven’t had any luck yet. I hope you can help :)
-
AuthorPosts