Riversatile
Forum Replies Created
-
OK, I understand better.
We count on you dFactory !Thanks dFactory !
MarkRR, you can still enable Video Auto-play feature in the Configuration tab 😉
Hi MarkRR,
It seems you’re right. For example, in :
<a href="http://www.youtube.com/watch?v=6DskZcbyn64?autoplay=1" title="Quiksilver Pro Gold Coast Teaser">Teaser</a>
?autoplay=1 is ignored.As far as I know, there is no other parameter to make autoplay for Youtube videos.
The Responsive Lightbox’s developper has to adapt his plugin to accept the mask of the video URL chained with ?autoplay=1.Regards
Forum: Fixing WordPress
In reply to: Can't view my posts in admin pageHi sprouls,
Did you test to change Theme temporarly ? Try switch to “twentythirteen” Theme, then try to view your post in the Dashboard.
Forum: Fixing WordPress
In reply to: Want to Change Font Color Only on Search Results PageHi Armenta,
To do this, you have to separate “color” CSS class for your Search template.
Like that, if you change font color on the CSS (eg: “search-font-color”) attribute, this will not affect the other pages based on another PHP templates.Forum: Fixing WordPress
In reply to: Leave A Reply Error 404 Not FoundHi Rogerdixon,
What is the link when you focus on the link “Leave a reply” ?
Something like “http://my-website.com/?p=14#respond” ?
Then, copy paste the link of your post/page.Forum: Fixing WordPress
In reply to: Is there a way to store all running SQL queries in a fileAnd if you want to store in a file SQL queries that you run on the WordPress Dashboard, put this code into your functions.php in your Theme folder :
(This will not showing number of SQL queries in the footer. This just place the script in the Admin footer)/* ####################################### Store in a file SQL queries I run via my WordPress Dashboard ####################################### */ add_action('admin_footer', 'my_admin_footer_function'); function my_admin_footer_function() { // Custom Time Zone date_default_timezone_set('Europe/Paris'); // Define the file name and location in the variable $log_file // Below, the path correspond to http://your-site/dashboard-queries.txt $log_file = ABSPATH. "dashboard-queries.txt"; // Store the Date/Time of the page load in the variable $Now $Now = date("Y-m-d H:i:s"); // Build the stored informations in the variable $Qdata $Qdata = $Now . "," . get_num_queries(); // Save date of the variable $Qdata in the file $log_file file_put_contents($log_file, PHP_EOL . $Qdata , FILE_APPEND); }Forum: Fixing WordPress
In reply to: Small Font SizeHi,
I analysed the source code of your front page.
The main Font-size CSS attribute (font-size:10px) is in the file http://www.thegpscoach.com/newsite/wp-content/themes/awake/styles/legacy_frosted_glass_aurora.css at line :/*:General Typography ~*~*/ body{/*:Body Font */ color:#000;font-size:10px;font-weight:normal;font-style:normal;font-family:Arial, Helvetica, sans-serif;}Be carefull, because on your pages, there are multiple CSS class that use percentage based on this CSS attribute instead of use a number of pixels to fix the font size of your elements.
Regards
Forum: Fixing WordPress
In reply to: Is there a way to store all running SQL queries in a fileUP please !
Finaly, I found the solution by myself after more than 30 different websites !
If this may help to some. The following code allows your WordPress to store [The page load Date/Time, number of SQL queries on that page] in separated rows !<?php // Custom Time Zone date_default_timezone_set('Europe/Paris'); // Define the file name and location in the variable $log_file // Below, the path correspond to http://your-site/queries.txt $log_file = ABSPATH. "queries.txt"; // Store the Date/Time of the page load in the variable $Now $Now = date("Y-m-d H:i:s"); // Build the stored informations in the variable $Qdata $Qdata = $Now . "," . get_num_queries(); // Save date of the variable $Qdata in the file $log_file file_put_contents($log_file, PHP_EOL . $Qdata , FILE_APPEND); ?>Now, I just have to wait some hours, and I should be able to see why and how my site exceeds more than 50000 querie an hour.
We can also include Host IP address in the rows if we want to know if ban a suspicious IP address is necessary to limit queries.Forum: Fixing WordPress
In reply to: Featured image (Thumbnail) Display large on all my post.Hi,
You should read this :
https://codex.wordpress.org/Post_ThumbnailsForum: Fixing WordPress
In reply to: How to delte ONLY comments with links in them?Hi,
Go to Comments in your WordPress Dashboard.
Then make a search with “http”, this will returns comments that only have links in them.Forum: Fixing WordPress
In reply to: RSS FeedSee the RSS feed appearence on FeedDemon:
http://postimg.org/image/kzv81icq5/Forum: Fixing WordPress
In reply to: RSS FeedFor test, I added your blog RSS feed (http://truedentalsuccess.com/blog/feed/) in my FeedBurner account.
Youtube videos displays fine !Forum: Fixing WordPress
In reply to: WordPress Logs me out anytime I switch windows/tabsIt could be a Google Chrome extension.
- Copy/Paste chrome://extensions/ in the address bar of Google Chrome to view all Google Chrome extension installed in Chrome.
- Then disable all of them.
- Restart Google Chrome
- Open your usual URL in your tabs and see if the issue disapeared.
If it’s still not working, try to uninstall Google Chrome and reinstall Google Chrome by clicking here.
It could be a virus also.Forum: Fixing WordPress
In reply to: Problem with menu .activeYes, you have to add something in the PHP code.
Here is what I found on THIS TOPIC. It may help.If you’re using PHP you could use a variable to indicate wheter the page is active.
<div id="main-menu"> <ul div="nav"> <li><a <?php echo $isactive; ?> href="about.html" target="_blank">ABOUT</a></li> <li><a <?php echo $isactive; ?> href="services.html" target="_blank">SERVICES</a></li> <li><a <?php echo $isactive; ?> href="portfolio.html" target="_blank">PORTFOLIO</a></li> <li><a <?php echo $isactive; ?> href="blog.html" target="_blank">BLOG</a></li> <li><a <?php echo $isactive; ?> href="contact.html" target="_blank">CONTACT</a></li> </ul> Then if the page is active you could print something like "class='active_section'" and in your css: .active_section { color: #CE1F20; text-decoration: none; }You just have to adapt the Class in function of your Class name (“current-menu-item”)