Leanne Romak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to restore website from Tar.Gzip backupUse the .zip option instead of the Tar.Gzip. This will give you a file that you can download, unzip and restore via FTP and PhpMyAdmin.
Forum: Fixing WordPress
In reply to: Need to view static HTML in my root….get 404 insteead of .html fileCheck the permissions on the cert.html file, and ensure it is web readable, ie 644.
Forum: Themes and Templates
In reply to: I've edited the heck out of Oxygen… HELP!Here is a post that might help: https://premium.wpmudev.org/blog/how-to-upgrade-a-wordpress-theme-even-if-its-customized/
Forum: Fixing WordPress
In reply to: Pixelated GIFs when on actual site but look fine during editingYour image file needs to be 72 dpi at 100%.
Larger does not mean better, as the compression is causing the quality to degrade. If you provide a link to the image file I can show you.Forum: Themes and Templates
In reply to: [Baskerville] Featured Image DisplayIn the single.php file, you could find:
<div class="featured-media">
and add
style="display:none;"
to read:
<div class="featured-media" style="display:none;">
Note that this will remove the featured image from ALL single post pages.
Forum: Installing WordPress
In reply to: Categories don't show upCan you give more details such as the url of the site and the name of one of the categories?
Forum: Fixing WordPress
In reply to: Menu Item ParmissionMaybe this plugin will provide a solution: https://www.ads-software.com/plugins/menu-items-visibility-control/
You would add
! is_user_logged_in()
to the visibility menu field.Forum: Themes and Templates
In reply to: Can someone tell me what theme this is?You can view the html code of a page in your browser.
To view source in Safari:
1. Click on the “Develop” menu in the top menubar
2. If the Develop menu is not visible, go into Preferences in the Advanced section and select “Show Develop menu in menu bar.”
3. Click on “Show Page Source”
4. This will open a text window with the HTML source of the page you’re looking at.On most web pages you can also view the source by right-clicking on the page (not on an image) and choosing “Show Page Source.” This will only display if the Develop menu is enabled in Preferences.
For other browsers, google “view html source in Firefox” or your browser to find out how to enable.
There will be lines that show the path to content in the themes folder, in this case it was https://dishingupthedirt.com/wp-content/themes/DishingUpTheDirt/
I found the stylesheet reference in this line:
<link rel=’stylesheet’ id=’twentytwelve-style-css’ href=’https://dishingupthedirt.com/wp-content/themes/DishingUpTheDirt/style.css?ver=3.9.1′ type=’text/css’ media=’all’ />
You can view that file to find out more.
Happy theme hunting!
Forum: Themes and Templates
In reply to: Can someone tell me what theme this is?This is a custom theme adapted from TwentyTwelve.
Forum: Plugins
In reply to: Email WP post favorite – please helpAlso, I added <?php wpfp_list_favorite_posts(); ?> in the template above the form code, and the favourites list appears on the page correctly.
Forum: Plugins
In reply to: Email WP post favorite – please helpIt was mentioned on the other thread to take the s off of gravity_forms, to read:
gravity_form( 1, true, true, false, $field_values, true);
It is not working for me as well though: it lists random posts in the form, rather than the actual favourites list.
Has anyone had success?