common.js:
// Import Barba.js
import barba from '@barba/core';
import home from './home';
// Import GSAP
import { gsap } from 'gsap';
export default {
common.js:
// Import Barba.js
import barba from '@barba/core';
import home from './home';
// Import GSAP
import { gsap } from 'gsap';
export default {
| // this combines all possible combinations of cells in row A and B in two rows: | |
| =ArrayFormula( | |
| VLOOKUP( | |
| CEILING(ROW(OFFSET(A1,,,COUNTA(A2:A)*COUNTA(B2:B)))/COUNTA(B2:B)) , | |
| {ROW(A2:A)-row(A1),A2:A} , 2, ) | |
| ) | |
| // this combines the two new rows C and D and makes one expression out of them: | |
| Add this to your functions.php in wordpress theme folder: | |
| add_action( 'wp_enqueue_scripts', 'gallery_scripts', 20 ); | |
| function gallery_scripts() { | |
| if ( is_archive()) { | |
| if ( current_theme_supports( 'wc-product-gallery-zoom' ) ) { | |
| wp_enqueue_script( 'zoom' ); | |
| } | |
| if ( current_theme_supports( 'wc-product-gallery-slider' ) ) { |
| http://dev7studios.com |
| in wp-config.php einsetzen (hinter <?php ... vor Datenbankname, etc.) | |
| /** Memory-Limit hochsetzen */ | |
| define('WP_MEMORY_LIMIT', '32M'); |
| WP-Version: 3.5.x | |
| in wp-content/themes/"themeordner"/functions.php einsetzen (nicht ganz am Schluss): | |
| /** | |
| * Function to change excerpt length | |
| */ | |
| function custom_excerpt_length( $length ) { | |
| return 20; | |
| } | |
| add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); |
| Version: WP 3.5.x | |
| bei Wordpress-Plugins suchen: TW Recent Posts Widget |
| Version: WP 3.5.x | |
| Erste Zeile ändert die php-Version. Wichtig ist, dass der Befehl in der htaccess möglichst ganz oben steht. | |
| addhandler php53-cgi .php | |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] |
| Version: WP 3.5.x | |
| UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://www.eureurl.de/altesverzeichnis/wp-content/uploads/', 'http://www.eureurl.de/neuesverzeichnis/wp-content/uploads/'); | |
| Beispiel post content für reichenberger: | |
| UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://reichenberger.josialoos.com/', 'http://reichenberger.nachbarschaftshaus.de/'); | |
| Beispiel guid: | |
| UPDATE wp_posts SET guid = REPLACE(guid, 'reichenberger.josialoos.com', 'reichenberger.nachbarschaftshaus.de'); |