cerics
Forum Replies Created
-
Forum: Plugins
In reply to: [YD Network-wide Options] Getting fatal errorSame please let me know if you find an alternative or fix.
Forum: Plugins
In reply to: [Pushwoosh] Every new post pushes a notificationAlso, the plugin breaks the Network Admin area. We get an HTTP 500 error when trying to access the Network Admin dashboard.
Anyone have any advice?
Forum: Plugins
In reply to: [RDP Wiki Embed] ERROR: Unable to retrieve wiki contentsSame problem.
Forum: Themes and Templates
In reply to: [Garfunkel] Add author at the preview pageSorry for the late replay opencuny, I was on vacation.
If you need any more specific help let me know. You can email me at ChadEricStevens(at)gmail.com.
Forum: Themes and Templates
In reply to: [Garfunkel] Add author at the preview pageEdit content.php on line 45 put:
<a class="post-meta-author" href="<?php bloginfo('home'); ?>/author/<?php echo get_the_author(); ?>" title="Posts by <?php echo get_the_author(); ?>"> <div class="genericon genericon-user"></div> <?php echo get_the_author(); ?> </a>
Forum: Themes and Templates
In reply to: [Garfunkel] Infinite Scroll on Home Page Glitching at EndAlso, to help diagnose the problem, I noticed the footer is not loading on the homepage. I will post here if i find a solution or more information.
Forum: Plugins
In reply to: [Weekly Class Schedule] Border, 12 hour mode, settingsI also would like to know how to switch to 12 hour mode.
I am very sorry. You are correct. A wordpress setting under Settings > Discussion > “Email me whenever”> “Anyone posts a comment” was sending out email. I assumed it was Subscribe2.
Thank you for letting me know, you are the reason I figured things out.
Forum: Fixing WordPress
In reply to: Writing custom data to an additional mySQL databaseOK thank you I will try this and let you know. This is my first time working with AJAX. I appreciate your advice!
Forum: Fixing WordPress
In reply to: Writing custom data to an additional mySQL databaseOk so I’ve successfully built some php that will write a row to a custom database. Any idea how I can tie this to a button action?
<?php
global $wpdb;// Get URL
$Path=$_SERVER[‘REQUEST_URI’];
$URI=’https://www.example.com’.$Path;// Get Current User
$user = wp_get_current_user();// Inject row into custom_table
$wpdb->insert(
‘custom_table’,
array(
‘user’ => $user->user_login,
‘page’ => $URI,
‘vote’ => 6,
‘date’ => current_time(‘mysql’)),
array(
‘%s’,
‘%s’,
‘%d’,
‘%s’
)
);
?>Forum: Fixing WordPress
In reply to: Writing custom data to an additional mySQL databaseThank you for your response. Pretty much what I want to do is make a html bullet input selector that exists on every page. The user can select one of those options and the value is sent to the database.
Do you have any further input?
Also, would it be best to write to the database via php, are there any plugins that would accomplish all of this?
Forum: Plugins
In reply to: [Broken Link Checker] All my links were identified as brokenSame here. Wish this could be fixed, I really want to use this plugin.
Forum: Plugins
In reply to: [Broken Link Checker] wrongly marked as broken linksSame problem. At first I thought it might be occuring because the page could be taking a long time to load. Nope. I boosted the check time up to 300 seconds (5 minutes) most pages come back with the error of “Connection failed” and it is simply not true. I wish there was a way to fix this because this plugin could do me alot of benefit but unfortunately it is useless. I attempted to use it about 4 months ago with the same scenario. Maybe ill try again later.
Forum: Fixing WordPress
In reply to: Adding pagination to a custom themeAny way to number these things?
Forum: Fixing WordPress
In reply to: Adding pagination to a custom themeAmazing! I have been trying to do this for months. Thanks keesiemeijer.