Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by wyclef

  1. W

    JavaScript Help make a clickable DIV block

    How could I add some alerts or something to troubleshoot this not working. Does the A selector need to be a direct child of single-wrapper?
  2. W

    JavaScript Help make a clickable DIV block

    Hi, I have this theme where an image, and some text are two separate blocks that share the same link so they currently operate separately and I wanted to get it where I could just click the main block and have it act as one link. I was trying out the following type of solution but it doesn’t...
  3. W

    PHP PHP 8 Fatal Error

    or function orderByDate($items) { //$tempDate = strtotime($item); $referenceArray = array(); for ($i = 0; $i < (is_countable($items) ? count($items) : 0); $i++) { $referenceArray[] = strtotime($items[$i]['pubDate']); } array_multisort($referenceArray, SORT_DESC...
  4. W

    PHP PHP 8 Fatal Error

    So like an if $items isset around the for, else return?
  5. W

    PHP PHP 8 Fatal Error

    Hi, I am getting a fatal error of PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in... on the following count line when upgrading from PHP 7.4 to PHP 8: function orderByDate($items) { //$tempDate = strtotime($item)...
  6. W

    PHP Undefined Array Key Help

    Would that just be added to the foreach line after => $row?
  7. W

    PHP A non-numeric value encountered Warning

    Hi, I am getting a non-numeric value encountered warning on the line with the + in PHP 7.4. If I change the following from // Color picker case "color": $default_color = ''; if ( isset($value['std']) ) { if (...
  8. W

    PHP Undefined Array Key Help

    Hi, I am getting a PHP Warning of undefined array key on the following line. Wondering how I can adjust this function to get the warning to go away? $rows[$key] = $row['id']; which is inside the following function function getWorkingPapers() { if(get_field('working-papers'...
  9. W

    PHP PHP/WP problem with code, trouble accessing custom archive links

    I do see a 301 when trying to go to the year. /2021,/2020,etc. $_SERVER['REQUEST_URI']) only returns /news/newsletter/
  10. W

    PHP PHP/WP problem with code, trouble accessing custom archive links

    Seems like this worked back in WP 5.4 and then broke in WP 5.5. Found this which seems related although I don't see I am using 'paged'. https://core.trac.wordpress.org/ticket/50976
  11. W

    PHP PHP/WP problem with code, trouble accessing custom archive links

    Hello, I have an old custom WP site that was working fine running PHP 7.3.9 and WP 4.9.18 and since upgrading to PHP 7.4.21 and WP 5.6.10 the archive links by year to access older data are no longer doing anything other than reloading the same page. I was wondering if someone might be able to...
  12. W

    JavaScript How to triple nest quotes in JS?

    I think in the newer versions of jQuery that # sign needs "" or '' around it but since there are already "" next to it I am unclear how to format it.
  13. W

    JavaScript How to triple nest quotes in JS?

    Hi, how can I triple nest quotes so jQuery(".navigation a[href*=#"+rnrSection+"]").parent().addClass("active"); has quotes around the # sign? I am getting an Uncaught Error: Syntax error, unrecognized expression: .navigation a[href*=#”+rnrSection+”] that I think has to do with that.
  14. W

    PHP PHP events not showing when date is today.

    Hi, I have some old PHP code I am trying to sort through and it is for pulling 3 upcoming events and I guess it was written so todays event doesn't show and am trying to fix that. I was wondering if anyone can make sense of this? <ul> <?php $urlSplits =...
  15. W

    PHP RSS Feed aggregation changing date to todays date everytime feed is aggregated

    Actually found the original documentation via the Wayback Machine > https://web.archive.org/web/20191228101238/http://rssphp.net
Back
Top Bottom