Rachel Baker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Editor Text WhiteJacob,
I would try:
– deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
– switching to the default theme to rule out any theme-related problems.
– renaming the plugins folder via FTP
– Reinstalling WordPress
Forum: Fixing WordPress
In reply to: Recieve email notification on Facebook comments on wordpress blog?How did you integrate Facebook Comments with your site? Did you use a plugin?
Forum: Fixing WordPress
In reply to: Meta Tags, DescriptionI would recommend using the WordPress SEO plugin, you will be able to enter meta titles and descriptions from within each page/post: https://www.ads-software.com/extend/plugins/wordpress-seo/screenshots/
Forum: Fixing WordPress
In reply to: What actions of plugin WordPress ?More information on the WordPress template files:
Forum: Fixing WordPress
In reply to: Visual Editor Text WhiteDo you have any plugins installed that modify the TinyMCE editor or have you customized it yourself at all?
Forum: Fixing WordPress
In reply to: Trouble center footerProviding a link to the site is really the best way for us to help.
Forum: Fixing WordPress
In reply to: Can't post to my blogThe plugin Notify Unconfirmed Subscribers is causing your issue.
Using FTP you can rename the folder, this will deactivate the plugin and should allow you access your site again.
Forum: Fixing WordPress
In reply to: If statementYou could do something like this:
<?php if (!empty ( $download)) :?> <a class="download rounded-corner">Download PDF</a> <?php endif;?>
Forum: Fixing WordPress
In reply to: Site is cut in halfThe problem starts with an entry in the #contentwrapper element in your CSS file. You have declared:
overflow: hidden;
That is causing your site to cut-off at the bottom of the browser window.
Facebook was still caching the globe image. Facebook has a tool that will clear their cache and give you the data they see for your site: https://developers.facebook.com/tools/debug
I already added your URL and now you should not see the globe image any longer. If you have future issues with Facebook, the link above is your best 1st step.
You have a plugin installed called WP-OGP that either doesn’t have the default image setup in the plugin configuration (I have never used the plugin, so this is a guess)
OR
the plugin just automatically adds the following to the head section of your site:
`<meta property=”og:image” content=”https://tamaractalk.com/wp-content/plugins/wp-ogp/default.jpg”>See my screenshot here: https://skitch.com/rachelbaker/gjecd/tamaractalk
Forum: Fixing WordPress
In reply to: Simple Posting in WP.orgwww.ads-software.com has both page and post functionality. You would only need one site from what you have described.
Forum: Fixing WordPress
In reply to: Please help, how to edit demo content! (see site)Navr,
I could not find much in the theme documentation: https://www.yootheme.com/docs/
I suggest contacting them directly, they would be able to give you the best answer. I am not familiar with that theme or their backend configuration options.
Forum: Fixing WordPress
In reply to: changing order of pages in list of pagesThe wp_list_pages function information is covered in the Codex here: https://codex.www.ads-software.com/Function_Reference/wp_list_pages
You can modify your code to
<?php wp_list_pages('sort_order=DESC&number=15&title_li='); ?>
That will display the pages in the opposite order and only display 15 of them, however I recommend using the WP Query function where you can page the results into increments of 15 as you desire. https://codex.www.ads-software.com/Class_Reference/WP_Query#Interacting_with_WP_Query
Forum: Fixing WordPress
In reply to: Videos shows in post, but not home pageIf posts on your homepage are displaying the post excerpt, which I cannot verify without a link to your site, media like videos are stripped away in an excerpt display (by default). If you really need to get around this, I suggest paying for support with the theme developer so they can best instruct you on how to customize the excerpt for your needs.