bowend3c
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fell] Floating Nav?Follow up:
I was able to get the menu itself to float using the following:
#header-navs-container { display: none; background-color: var(--color-bg-alt); padding: 5px; z-index: 100; position: fixed; }
However, can’t get the
header-nav-toggle
to do the same. It’s still fixed at the top of the page when you scroll.I reported this a few days ago, and you all since released a new update (2.02). It appears it still hasn’t been fixed. I am experiencing this same issue, although I don’t receive any errors at all. The screen simply darkens and then nothing happens. I’m happy to help debug if you need.
– Brent
- This reply was modified 7 years, 11 months ago by bowend3c.
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Causing fatal error after updating@dunewoman – If you read the thread the plugin author described how to fix it. It involves logging into your site via FTP. Admins: Can you please close this thread? I’m sick of people freaking out and posting here because they didn’t take the time to read the damn thread.
– Brent
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Causing fatal error after updating@dokrugby – It’s not a difficult manual fix, but you’re going to have to change the name of the googleanalytics folder in order for your wordpress installation to allow you to log in to the dashboard. Once you do that just go back and install an older version of the plugin: https://www.ads-software.com/plugins/googleanalytics/developers/
The plugin developer will figure it out in a few days and push us a new update. In the meantime if you want to be able to access your dashboard, you’re going to have to do the manual fix.
– Brent
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Causing fatal error after updatingTried it in three different browsers (Safari, Firefox, and Chrome). Same result. I turned off my popup blockers in all three browsers.
– Brent
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Causing fatal error after updating@sharethis – Sure. Here you go:
https://drive.google.com/drive/folders/0B0OjccXZGmuhMzY2TEZrcTFtSWc?usp=sharing. There are two screenshots, one before, one after. Basically what happens: I click on it, the screen darkens, and nothing happens.
Let me know if I can help you debug any further.
– Brent
- This reply was modified 7 years, 11 months ago by bowend3c.
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Causing fatal error after updatingLog in to your site using FTP. Then navigate to wp-content/plugins.
Rename the googleanalytics folder to googleanalytics1
They try logging in to your wordpress dashboard. It should have automatically deactivated the Google Analytics plugin.
– Brent
- This reply was modified 7 years, 11 months ago by bowend3c.
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Causing fatal error after updatingI tested the updated plugin for those of us with older PHP installed. It seems to be working, and I do not have any more PHP errors.
One problem I am having: I am not able to authenticate my account with Google. I had to manually authenticate using my tracking ID.
– Brent
- This reply was modified 7 years, 11 months ago by bowend3c.
Forum: Fixing WordPress
In reply to: Output shortcode if post is from a certain category.Update: For anyone who reads this thread in the future. I used the wrong quotes. I should have done double quotes, not single quotes. Likewise the “else” part is completely unnecessary. This is the revised code:
<?php if (has_category('oldsite')) { echo do_shortcode( "[types field='body'][/types]" ); } ?>
Now it works!
- This reply was modified 8 years ago by bowend3c.
Forum: Fixing WordPress
In reply to: Display posts from certain categoryWorked like a charm. I have never used an array as part of a loop before, so this was a good learning moment for me. Thank you very much!
– Brent
Forum: Fixing WordPress
In reply to: Display posts from certain categoryGot it. Here it is:
$post_query_args = array( 'post_type' => array( 'post' ), 'nopaging' => false, 'posts_per_page' => absint( $number_of_posts ), 'ignore_sticky_posts' => true, 'cache_results' => true, 'update_post_meta_cache' => true, 'update_post_term_cache' => true, ); $post_query = new WP_Query( $post_query_args ); if ( $post_query->have_posts() || $general_title != '' || $general_entry != '' || $button_text != '' ) { ?>
- This reply was modified 8 years ago by bowend3c.
Forum: Plugins
In reply to: [FG Drupal to WordPress] Imports pages fine, but not blog postsHi,
Please pardon me, as I’m not exactly familiar with the Drupal architecture. How would I determine the post type?
In the database they are under the “content_type_post” row.
Thanks,
BrentHi Joe,
I am also experiencing this problem, and my guess is that it is not browser specific. I am using Google Chrome on Mac OSX.
The problem began after completing the most recent update of WordPress.