Neat trick to get Lorum Ipsum during development (RESTful API)
Forum in Server-Side | By Some Guy
Published | Last Update
Last ReplyVery helpful! Thank you Hash Brown,
Very helpful!
Editing site title and meta descriptions in WordPress
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyThe best plugin to do this with is Yoast SEO. Once installed, navigate to the page(s) or post(s) which need your attention and scroll down until yo... Hash Brown,
The best plugin to do thi...
Last ReplyYou can upload them as media, and then take the direct media link and use whatever else you want to do. Hash Brown,
You can upload them as me...
Increase max upload size in WordPress?
Forum in Content-Management Systems | By Some Guy
Published | Last Update
Last ReplyThis is pretty easy. First double check you're actually exceeding the file upload size and not the PHP's max execution time. They are diffe... Hash Brown,
This is pretty easy.
Last ReplyThe easiest way is a plugin. If you use Yoast premium it will handle this automatically which is nice. Otherwise, you can use redirection which... Hash Brown,
The easiest way is a plug...
How do I change author names in wordpress?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyThe easiest way of doing this would be: Backup your website Log into wordpress backend with your Admin account Navigate to users Click her... Hash Brown,
The easiest way of doing...
How do I add a table to my wordpress post?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyMost affiliates are using tablepress, which is completely free, simple to use and automatically adds all the schema you need to snatch those knowledge... Hash Brown,
Most affiliates are using...
How do I change the front page in wordpress?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyYes this is possible, if you know what you're doing. Go to your WordPress admin panel Click on Settings Click on Reading From the home... Hash Brown,
Yes this is possible, if...
How to remove the "powered by wordpress" in my footer
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyI'm going to assume you did this using the wordpress.org (self hosted) version of wordpress, and not the silly wordpress.com blogs. So dependin... Hash Brown,
I'm going to assume y...
Last ReplyThis is very simple. Go to the left hand column in the WP Admin area. Click on Appearance: On the menu page you need to select the menu y... Hash Brown,
This is very simple.
How do I embed a YouTube video into my wordpress post?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyYou don't need a plugin for this, it's actually supported in the "Add Media" button. Go to your post or page where you want the v... Hash Brown,
You don't need a plug...
Last ReplyHello, The easiest way to do this is to install the duplicate page plugin. This will give you extra options in the posts page which let you dupl... Hash Brown,
Hello,
How do I remove the comment box in wordpress?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyTheres a few approaches to this depending on your theme. The easiest way if you're not technichal is to install a plugin, one like this will do... Hash Brown,
Theres a few approaches t...
How do I find my RSS feed URL in wordpress?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyWordpress RSS feed URL is here: domain.com/feed/ Hope this helps Hash Brown,
Wordpress RSS feed URL is...
Last ReplyHello, The below snippet will help. function sanitize_output($buffer) { $search = array( '/\>[^\S ]+/s', // strip white... Hash Brown,
Hello,
[CSS] Is there a selector that does the opposite of the tilde?
Answers in Style and Layout | By Some Guy
Published
Last ReplyHello, No, there is no previous sibling (or opposite tilde) selector available. Thanks Hash Brown,
Hello,
Is it possible to convert an HTML <canvas> element to an SVG element?
Answers in Web Development | By Some Guy
Published
Last ReplyThere are a number of javascript libraries that do this, take a look at this one: https://github.com/canvg/canvg Hash Brown,
There are a number of jav...
In JavaScript, how do you get the character pressed from a keydown function?
Answers in Client-Side | By Some Guy
Published
Last ReplySuper simple! In pure Javascript: <script type="text/javascript"> function theKeyPress(e){ var keynum; if(window.event) {... Hash Brown,
Super simple!
Can the "HTML Purifier" library be integrated into Laravel?
Answers in Frameworks | By Some Guy
Published
Last ReplyYes! They do a version of HTML Purifier specifically for Laravel Read more here: https://github.com/mewebstudio/Purifier Hash Brown,
Yes!
[Laravel] Best way to determine an IP address' location?
Answers in Frameworks | By Some Guy
Published
Last ReplyYou have a couple of possible options. You can use an API like GeoIP. There are people who have kindly coded laravel packages for this, her... Hash Brown,
You have a couple of poss...
Best way to get a user's HTTP referer value within a Laravel project?
Answers in Frameworks | By Some Guy
Published
Last ReplyHere you go: Request::server('HTTP_REFERER'). You should check the value is set before doing anything with it, not all requests have a referer... Hash Brown,
Here you go:
Last ReplyHello, No, XenForo is a commercial software, you need to buy licenses and renew that license every year. If you're looking for open source f... Hash Brown,
Hello,
Is it possible to use PHP's in_array() function to only match exact results? For example, to match NULL but not FALSE?
Answers in Server-Side | By Some Guy
Published
Last ReplyYes! in_array() accepts 3 arguments, they are: The string you're looking for. The array you're searching. "strict", whi... Hash Brown,
Yes!
Google Search Console is warning me about blocked URL's after HTTPS migration
Forum in Search Engine Optimization | By Some Guy
Published | Last Update
Last ReplyHey, Do you have any URL's currently being blocked at all in your robots.txt file? From time to time Search Console can also get confused, i... Hash Brown,
Hey,
How do I add an age verification page to wordpress?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyLooks like there are a few age verification plugins for WordPress that might work: https://wordpress.org/plugins/age-verify/ https://wordpre... August R. Garcia,
Looks like there are a fe...
I'm locked out of my WordPress website, how do I reset the password?
Forum in Content-Management Systems | By Some Guy
Published
Last ReplyIt should be possible to reset your password directly in the database table. Using PHPMyAdmin (or whatever), follow these steps: Open PHPMyAdmin... August R. Garcia,
It should be possible to...
DirtyCOW (Copy-on-Write) Explained by Computerphile and LiveOverflow
Forum in Unintended Behavior and Exploits | By August R. Garcia
Published | Last Update
That's not DIrtyCOW; that's my wife.
MoreThis thread was only made for the meta description. Videos: https://www.youtube.com/watch?v=kEsshExn7a https://www.youtube.com/watch?v=CQcgz4...Last Reply<?php implode(", ", $arr) More Information: http://php.net/manual/en/function.implode.php August R. Garcia,
Last Reply<?php // Get max $draft->draft_id = Post::max('id'); // Get the next after the max $draft->draft_id = Post::max('id') + 1; August R. Garcia,
[Google Sheets] How to get the largest number in a range?
Answers in Spreadsheets | By Some Guy
Published
Last ReplySee the MAX function: https://support.google.com/docs/answer/3094013?hl=en August R. Garcia,
See the MAX function: