aiiiiiight
Forum Replies Created
-
Is there any way to check the number of views from the post itself?
I have now connected WordPress.com and the admin of the site has connected his WordPress account. We are both still getting the same results.
Hi Michelle,
Thanks for getting back to me. Here’s a screenshot of what I’m seeing:
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] 508 Error? Incomplete backup!?Hi Bryle,
I don’t see that “actions” menu, only a button saying “Backup Now.” Does that mean it’s not backing up anymore?
I have also been periodically getting an error that says “unexpected response” and shows some javascript and then says “There appears to be an unauthorized attempt from this site to access your database located at https://sinaiandsynapses.org. The attempt has been halted.”
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] 508 Error? Incomplete backup!?Hi Bryle,
Okay, I found the option under expert settings –?the problem is, the site has basically been unusably slow and throwing errors ever since I started this backup process (which has been running for 2 days!).
Is there any way to stop the process? I don’t even have a clear idea of if it’s still going on. From what you said about the log, it sounds like something stopped it from completing, but the site is still experiencing the same adverse effects as during the backup.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] 508 Error? Incomplete backup!?Hi Bryle,
Here is the log from “most recently modified log file”:
Thanks!
Hi Chris,
Thanks for the response. I’m actually pretty rusty with CSS… I tried to see if I could style the text in any way based on your keen observation about the ID’s (I’m not sure how that happened, maybe it has something to do with my theme?), but calling just the ID (#AAAS) and trying to style it doesn’t do anything. Is it possible to style these individual tags from the WordPress customizer? I have no idea how I would change the HTML.
Forum: Hacks
In reply to: Smooth scrolling using jquery/pluginsHi, thanks so much for your helpful tips. I’m sorry I’m such a n00b at this. Here’s what I was able to follow and how I’ve tried to remedy the situation since:
1. I changed the skip links to div id’s as you suggested.
2. I removed the multiple body tags, which were in individual posts. It was a foolish stopgap situation to some minor past aesthetic problem.
3. I removed the redundant jquery references.However, I was still not getting any results nor any errors in the console, so now I’ve tried to streamline things –?I have now given up on using scripts for the time being and am simply trying to use the plugin Page Scroll to ID. But that’s not working either. Do you have any idea why that would be?
Also, the site might look a little different than before because I had to reset the functions file from having messed around too much in it. So right now, the site is not arranged in alphabetical order like it was before. Do you know if plugins like this still require certain things like enqueueing in the functions file? This is literally the whole functions file for this theme, so maybe something is missing:
<?php automatic_feed_links(); add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 50, 50 ); // 50 pixels wide by 50 pixels tall, box resize mode if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '<td><div id="submenu_%2$s" class="header">', 'after_widget' => '</div></div></td>', 'before_title' => '<div id="widget_title"><h2 style="color:white">', 'after_title' => '</h2 ></div><div class="menu_content">', )); ?>
Let me know if you can help. Thanks!
P.S. Do you have any idea why the top two posts are stacking on each other like that? I am piggybacking off of someone else’s theme and this has apparently been a bug since the beginning.
Forum: Plugins
In reply to: [Collapse-O-Matic] Colomat-nolinkHi there, thanks for the kind words, but sadly your code was giving me some syntax errors :/ I was able to keep the link from disappearing, at least, with this:
`<?php echo do_shortcode( ‘[expand title=”Contact” trigclass=”colomat-nolink” tag=”div”]
<li><a href=”https://www.facebook.com/xxxx”><img src=”https://xxxxx/wp-content/uploads/2015/01/facebook.png”></a></li>
<li><a href=”https://www.flickr.com/photos/xxxxxx/”><img src=”https://rxxxx/wp-content/uploads/2015/01/flickr-3.png”></a></li>
<li><a href=”https://www.last.fm/user/xxxxx”><img src=”https://xxxx/wp-content/uploads/2015/01/lastfm.png”></a></li>
<li><a href=”https://twitter.com/xxxxx”><img src=”https://xxxx/wp-content/uploads/2015/01/twitter-2.png”></a></li>
<li><a href=”https://instagram.com/xxxxxx”><img src=”https://xxxxx/wp-content/uploads/2015/01/instagram.png”></a>
<li><a href=”mailto: xxxxxx></a><img src=”https://xxxxx/wp-content/uploads/2015/01/email-1.png”></a></li></ul>
[/expand]’ ) ?>
</div></li></ul></div>`But your idea about styling caused more syntax errors when I tried to use the styles from my other links:
`<?php echo do_shortcode( ‘[expand title=”Contact” trigclass=”colomat-nolink” tag=”div style=’font-size: 2em;
font-family: ‘Poiret One’, cursive;
text-decoration: none;
color: #edecd7;'”]
<li><a href=”https://www.facebook.com/xxxx”><img src=”https://xxxxx/wp-content/uploads/2015/01/facebook.png”></a></li><li><a href=”https://www.flickr.com/photos/xxxxxx/”><img src=”https://rxxxx/wp-content/uploads/2015/01/flickr-3.png”></a></li>
<li><a href=”https://www.last.fm/user/xxxxx”><img src=”https://xxxx/wp-content/uploads/2015/01/lastfm.png”></a></li>
<li><a href=”https://twitter.com/xxxxx”><img src=”https://xxxx/wp-content/uploads/2015/01/twitter-2.png”></a></li>
<li><a href=”https://instagram.com/xxxxxx”><img src=”https://xxxxx/wp-content/uploads/2015/01/instagram.png”></a>
<li><a href=”mailto: xxxxxx></a><img src=”https://xxxxx/wp-content/uploads/2015/01/email-1.png”></a></li></ul>
[/expand]’ ) ?>
</div></li></ul></div>`Also, lol, my photos aren’t even supposed to be on the front page like that but I kind of like the way it looks…
Forum: Plugins
In reply to: [Collapse-O-Matic] Where to post shortcode?Seems to be working now! I think I had forgotten the quotes in do_shortcode before. Thanks!