A long shot, but can anyone help debug why my twitter plugin has stopped working – see home page, right sidebar?
I’ve been away for several months, so not sure which update has stopped it working.
Any suggestion at what to look for in the code welcomed!
James
]]>Hope someone can help!
]]>here is a link to one of the posts the shows it
https://levoov.com/2016/01/chez-panisse-black-truffle-event/
Thanks in advance!
]]>1. Go to /your_wp_dir/wp-content/plugins/elegance-modal-box/
and open elegance-modal-admin.php.
2. Change all <?=
to <?php echo
AND all <?
to <?php
.
3. Save file and close.
4. Open elegance-modal.php.
5. Find function em_admin_scripts( $hook_suffix ) {
near line 25.
6. Add after:
if($hook_suffix !== 'toplevel_page_elegance-modal'){
return false;
}
PS. As I look into Elegance Modal Box’s code I can see that it is really poorly written. Will try to write something on my own.
https://www.ads-software.com/plugins/elegance-modal-box/
]]>https://www.ads-software.com/themes/elegance/
]]>Why doesn’t the lightbox popup work on my galleryside? Thank you in advance,
https://www.emiliaoije.se/portfolio/
im using Elegance – Responsive Portfolio WordPress Theme
]]>The theme invoke page title by: add_action( 'mysite_before_page_content', 'mysite_page_title' );
And the function:
function mysite_document_title() {
global $wp_query;
# Set up some default variables.
$doctitle = '';
$separator = ' |';
$post = $wp_query->get_queried_object();
…
if ( is_page() ) {
$page_title_format = mysite_get_setting( 'seo_page_title_format' );
$page_title_override = trim( get_post_meta( $post->ID, '_seo_title', true ) );
if( get_post_meta( $post->ID, '_seo_disable', true ) || !in_array( get_post_type( $post->ID ), mysite_seo_posttypecolumns() ) ) {
$doctitle = mysite_seo_replace( '%page_title%', $post );
} else if ( !empty( $page_title_override ) ) {
$doctitle = $page_title_override;
} else if ( trim( $page_title_format ) ) {
$doctitle = mysite_seo_replace( $page_title_format, $post );
} else {
$doctitle = mysite_seo_replace( '%page_title%', $post );
}
}
…
if ( ( ( $page = $wp_query->get( 'paged' ) ) || ( $page = $wp_query->get( 'page' ) ) ) && $page > 1 ) {
$seo_paged_format = mysite_get_setting( 'seo_paged_format' );
if( trim( $seo_paged_format ) ) {
$doctitle = $doctitle . str_replace( '%page%', $page, $seo_paged_format );
} else {
$doctitle = sprintf( __( '%1$s Page %2$s', MYSITE_TEXTDOMAIN ), $doctitle . $separator, number_format_i18n( $page ) );
}
}
# Apply the wp_title filters so we're compatible with plugins.
$doctitle = apply_filters( 'wp_title', $doctitle, '', '' );
# Print the title to the screen.
echo apply_atomic( 'document_title', esc_attr( $doctitle ) );
}
Maybe there is problem about using global $wp_query
?
https://www.ads-software.com/extend/plugins/ceceppa-multilingua/
]]>Im using WP-Ecommerce and the theme Elegance from Storefront for my site.
Im using Version 2.9.4 of Gold Cart and Version 3.8.8.5 of WP-Ecommerce and Version 1.1.3 of my theme Elegance from StoreFront.
Can anybody help me please with my problem. Thanks
Oh and this is my website – https://ohmygawd.co.uk
]]>