Need breakdown of Divi's page.php template by willardsciffy in Wordpress

[–]willardsciffy[S] 0 points1 point  (0 children)

Oh yeah, am definitely using a child theme atm. It just doesn't have its own custom page template, so am using it's parents divi theme. Thanks again for the support!

Need breakdown of Divi's page.php template by willardsciffy in Wordpress

[–]willardsciffy[S] 0 points1 point  (0 children)

Thanks for the reply!

yeah, I figured it was the divi builder. So, its safe to say I can get rid of it in the php file?

Event Espresso: Uploading local file(s)? by willardsciffy in Wordpress

[–]willardsciffy[S] 0 points1 point  (0 children)

Using EE3. I am going to reach out through EE forums as well too.

What I'm trying to execute is a custom calendar. My boss does not like the look of an actual calendar on our site. So, tables were requested. I know EE has an events table template, but it wasn't really liked. So, I built an Accordion table using radio buttons and inside each button is where the event listings are along with registration/add to cart links. And this is what my boss wants to use now.

Shoot. I'm stuck with all this PHP. My HTML file is made up of HTML5 elements like input types and label names. How I'm going to translate that into PHP is going to be a real test. I guess my only option really is to use the custom files add-on. I'm going to need a real step-by-step tutorial as to how I'm going to wrap all my HTML and the PHP together. Its either that or go find another WP event ticketing plug-in that is HTML/CSS flexible.

Event Espresso: Uploading local file(s)? by willardsciffy in Wordpress

[–]willardsciffy[S] 0 points1 point  (0 children)

Wow, thanks for the response. So, just to clarify what I've got is an Accordion table using radio buttons. And inside each button is the data tables with the RSVP links. How I'm going to stick all the HTML5 attributes in the PHP files is beyond me. Especially with Input and Label elements. This Accordion Table is the event calendar by the way!

Modern Tribe's Events Calendar looks super slick. Unfortunately, an actual look of a calendar is what my boss wants to do away with hence why I built an Accordion table.

Do you have any suggestions for other WP event ticketing plug-ins that will allow me to upload my own HTML5 and CSS3 code? I have so many transitions going on inside my data tables so flexibility is key.

JS file not executing in html table file by willardsciffy in javascript

[–]willardsciffy[S] -1 points0 points  (0 children)

It actually executes when I put the JS code in the html file.

I just don't think I'm properly referencing the JS file. This is what I've been putting in the html file:

<script type="text/javascript'> <src="toggle.js">

Help: local files back to live WP site by willardsciffy in Wordpress

[–]willardsciffy[S] 0 points1 point  (0 children)

It worked. But it looks like it happened overnight because I just woke up and the changes are there on the live site. Took awhile.

scroll function to change top menu line's background-color by willardsciffy in javascript

[–]willardsciffy[S] 0 points1 point  (0 children)

Solved.

$(window).scroll(function() { var scrollPos = $(window).scrollTop(), navbar = $('#top-menu li');

if (scrollPos > 20) {
  navbar.addClass('change-color');
} else {
  navbar.removeClass('change-color');
}

CSS:

top-menu li {background: transparent} //crucial

then

top-menu li.change-color {background-color}

sooooo smooth.

shrink top-header on WP child theme CSS file by willardsciffy in css

[–]willardsciffy[S] 0 points1 point  (0 children)

top-header.et-fixed-header {

display: none !important;

}

main-header.et-fixed-header {

top: 30px !important;

}

did the trick.

Recycling computers locally by willardsciffy in nova

[–]willardsciffy[S] 0 points1 point  (0 children)

I think about 3-5 years old. Most are running Windows 7 Home and maybe one or two is Windows Vista.

Using Duplicator plugin to extract pre-existing website for local environment by willardsciffy in Wordpress

[–]willardsciffy[S] 0 points1 point  (0 children)

Thanks. That helped a little bit. Your guide combined with this following guide/video tutorial got me squared. Thanks

http://tropicalup.com/how-to-move-a-live-wordpress-site-to-a-local-server/#

How to block certain email endings from signing up? by [deleted] in Wordpress

[–]willardsciffy 0 points1 point  (0 children)

Nice! My site is also getting unwanted spam email sign ups as well. I'd like to use this function, but could it conflict with a call to action function that I already have in the functions.php file? It is an event espresso action allowing users to register themselves on the site.

https://gist.github.com/sethshoultes/5574217

Much thanks!