-
Gave Reputation to diafol in Footer is invisible
>@diafol - he will get then 2 scrollbars. I know, but you can see the footer :) -
Replied To a Post in Footer is invisible
@diafol - he will get then 2 scrollbars. OP - I asume you want a header at the top and a footer at the bottom and the space inbetween is … -
Began Watching Footer is invisible
Sir I have these codes <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Set DIV Height to 100% Using CSS</title> <style type="text/css"> html, body { height: 100%; margin: 0px; position: relative; … -
Replied To a Post in jQuery UI
I meant jQueryUI and ok... dying is a big word, but since the rise of Bootstrap and the likes that also come with JavaScript widgets, I believe the popularity of … -
Replied To a Post in jQuery UI
I also thiink jQueryUI is dying slowly. If you want to rely on third party integrations then better go to a payed alternative such as [KendoUI](http://www.telerik.com/kendo-ui) or even the free … -
Began Watching jQuery UI
For as awesome and popular as jQuery is, why is jQuery UI so buggy and poorly maintained? *Frustrated* -
Replied To a Post in online shop
It's because there's also an index.html in that 'bestshop' directory and that's the one that gets loaded when accessing www.advance-web-studio.com/bestshop/ http://www.advance-web-studio.com/bestshop/index.html As far as I know loads Apache by default … -
Began Watching online shop
Hello, I have this online shop that I am trying to configure: www.advance-web-studio.com/bestshop/ and www.advance-web-studio.com/bestshop/index.php How to make the first one direct to the second one. The result is different. … -
Replied To a Post in Php file format
@rproffitt No I don't use Spyhunter (I'm on a mac). I use [uBlock Origin](https://github.com/gorhill/uBlock). It's not really a WOT replacement and it's also not an ad blocker... well... one on … -
Replied To a Post in Php file format
@rproffitt Be careful with the Web of Trust extension. I used it as well for a long time untill they've been caught selling their users' data to third parties. https://www.onlinethreatalerts.com/article/2016/11/10/web-of-trust-wot-caught-selling-their-users-data-they-collected-via-their-web-browser-extension-to-third-parties/ … -
Began Watching Php file format
Good morning, On my localhost, suddenly all of my php files are looking like this format  What is this? Is it hacker attack? How to stop this action … -
Gave Reputation to Dani in Is stuff easier to access?
> Nice revamp. But can you save us a click? That is, if I click on Read on the top bar and there are no results, the top bar is … -
Marked Solved Status for I get bool(false) but I seriously don't know why
I'm trying to retrieve the values of checkboxes in a custom post type. My complete function: function getTeam() { global $post; $team = new WP_Query(); $team->query('post_type=coaches'); $workshops = get_field('workshops'); if … -
Replied To a Post in I get bool(false) but I seriously don't know why
@jeff_8 Thanks! The var `$workshops = get_field('workshops');` needed to go inside while loop. That's why I also probably couldn't retieve the $image Object that I had as an issue in … -
Edited I get bool(false) but I seriously don't know why
I'm trying to retrieve the values of checkboxes in a custom post type. My complete function: function getTeam() { global $post; $team = new WP_Query(); $team->query('post_type=coaches'); $workshops = get_field('workshops'); if … -
Edited I get bool(false) but I seriously don't know why
I'm trying to retrieve the values of checkboxes in a custom post type. My complete function: function getTeam() { global $post; $team = new WP_Query(); $team->query('post_type=coaches'); $workshops = get_field('workshops'); if … -
Edited I get bool(false) but I seriously don't know why
I'm trying to retrieve the values of checkboxes in a custom post type. My complete function: function getTeam() { global $post; $team = new WP_Query(); $team->query('post_type=coaches'); $workshops = get_field('workshops'); if … -
Created I get bool(false) but I seriously don't know why
I'm trying to retrieve the values of checkboxes in a custom post type. My complete function: function getTeam() { global $post; $team = new WP_Query(); $team->query('post_type=coaches'); $workshops = get_field('workshops'); if … -
Began Watching I get bool(false) but I seriously don't know why
I'm trying to retrieve the values of checkboxes in a custom post type. My complete function: function getTeam() { global $post; $team = new WP_Query(); $team->query('post_type=coaches'); $workshops = get_field('workshops'); if … -
Replied To a Post in get_field('profile-image') returns <img src="Array" />
When returning as an image URL I had to use `get_field() `as well. Not sure why, but `the_field()`returned the path to the image just as text. I know that I … -
Replied To a Post in Google like?
Or embed as an object into your pages with an iframe and a download link as fallbacks. <object data="/pdf/your-pdf.pdf" type="application/pdf" width="100%" height="100%"> <iframe src="/pdf/your-pdf.pdf" width="100%" height="100%" style="border: none;"> This browser … -
Began Watching Google like?
Hello all Every one has seen gmail shows small blocks of files and documents preview and when we click on that then we can read it online on full page … -
Replied To a Post in text-align top in tinymce
> Thanks, it works out correctly now. Good! And now mark as solved, please! -
Marked Solved Status for get_field('profile-image') returns <img src="Array" />
I'm not sure why it returns Array, because as far as I know I don't retrieve the profile images from an array. See the following function. function getTeam() { global … -
Replied To a Post in get_field('profile-image') returns <img src="Array" />
Ah... I had to change a setting in the ACF plugin,. Instead of returning the value as an Object (the default setting), I had to return it as an URL. … -
Replied To a Post in get_field('profile-image') returns <img src="Array" />
Thanks, Diafol! But unfortunately that didn't work either. `var_dump` returned this `bool(false)` I found a whole section in the documentation about retrieving an image with ACF and will see if … -
Edited get_field('profile-image') returns <img src="Array" />
I'm not sure why it returns Array, because as far as I know I don't retrieve the profile images from an array. See the following function. function getTeam() { global … -
Created get_field('profile-image') returns <img src="Array" />
I'm not sure why it returns Array, because as far as I know I don't retrieve the profile images from an array. See the following function. function getTeam() { global … -
Began Watching get_field('profile-image') returns <img src="Array" />
I'm not sure why it returns Array, because as far as I know I don't retrieve the profile images from an array. See the following function. function getTeam() { global … -
Replied To a Post in Processing/Arduino
And perhaps it's a better idea to ask this at the Arduino forum to get a quicker answer, because I really had to google what Arduino was :) https://forum.arduino.cc/ -
Began Watching Processing/Arduino
I've been trying to have a button (Arduino) change the fill color of an ellipse in Processing 3. I thought an if statement like `if(button == 0){ if(fillValue == rgb){ … -
Replied To a Post in text-align top in tinymce
> The article alignment does not change yet. You mean the dates right? They are aligned at the top of the the `td` now on my screen. -
Replied To a Post in Check with PHP if custom post type field is empty
Ok 'solved' again, but this time for real :) Cereal you've pointed me in the right direction, because I had to do it like this: if (get_field('url')) { $listTestimonial .= … -
Marked Solved Status for Check with PHP if custom post type field is empty
Ok... back to my PHP/Wordpress adventure. In my testimonials post type I have added 5 custom fields and 2 fields are not mandatory which means they can be empty. One … -
Replied To a Post in Check with PHP if custom post type field is empty
Ok 'unsolved' again :) Thanks Cereal, but I had no luck with that. I tried it like this, but even the post that has an `url` field filled in gets … -
Revoked Solved Status for Check with PHP if custom post type field is empty
Ok... back to my PHP/Wordpress adventure. In my testimonials post type I have added 5 custom fields and 2 fields are not mandatory which means they can be empty. One … -
Marked Solved Status for Check with PHP if custom post type field is empty
Ok... back to my PHP/Wordpress adventure. In my testimonials post type I have added 5 custom fields and 2 fields are not mandatory which means they can be empty. One … -
Replied To a Post in Check with PHP if custom post type field is empty
I've marked it as "solved', but it's not ! PHP/MySQL... it's just not for me. The more I read about it, the more confused I get, so I will keep … -
Replied To a Post in Check with PHP if custom post type field is empty
I've found the table and 2 rows for that url (custom) field, but that's about it :) How do I check if an url field is empty on a custom … -
Replied To a Post in Check with PHP if custom post type field is empty
I've digged a bit further and I think I should do something like this: $url = mysql_result($result,$i,"url"); if (empty($url)) { $listTestimonial .= '<span>' . get_field('name') . ' - ' . … -
Created Check with PHP if custom post type field is empty
Ok... back to my PHP/Wordpress adventure. In my testimonials post type I have added 5 custom fields and 2 fields are not mandatory which means they can be empty. One … -
Began Watching Check with PHP if custom post type field is empty
Ok... back to my PHP/Wordpress adventure. In my testimonials post type I have added 5 custom fields and 2 fields are not mandatory which means they can be empty. One … -
Marked Solved Status for Create dynamically HTML with PHP
Aight folks! So I'm trying to do some custom coding within Wordpress and my plan is to create custom post types which I want to display within custom widgets. I … -
Replied To a Post in Create dynamically HTML with PHP
You're right! I was messing up between the two. I've used a plugin for creating custom fields in my custom post types, but choosed the wrong one to retrieve them … -
Gave Reputation to diafol in Create dynamically HTML with PHP
AH bugger. I think I know. You need `get_field()` instead of `the_field()`. The prior places the data into a var, the latter echoes it out immediately. So my code was … -
Replied To a Post in Is stuff easier to access?
oh... shit. My upvote smiley didn't go well, diafol :) -
Gave Reputation to diafol in Is stuff easier to access?
I like the forum button on mobile view. That has been bugging me for ages. Nice :) Also the ability to upvote on mobile. Just gave gentlemedia my first mobile … -
Replied To a Post in Create dynamically HTML with PHP
No, I'm getting two records, but still the text not inside the appropriate HTML tags like you showed me now and how I got it in the first place.. -
Replied To a Post in Create dynamically HTML with PHP
Thanks, diafol! The reason I took the route of custom widgets is becaiuse i chose to build ontop of a [naked wordpress theme](http://naked-wordpress.bckmn.com/) and to use a [wp page builder … -
Replied To a Post in Is stuff easier to access?
Okay, I couldn't help it to play around with it myself :) It's pretty much only adding/removing a class `.fixed` on a scroll event to `#forum-list` and the rest gets …
The End.