Jeff Adams
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.This reply has been marked as private.
I must have overlooked the plugin solution, or maybe when I saw it didn’t understand that it would be different than the one I already have.
I tried this and it didn’t really work. Sometimes users on facebook shoot video in portrait mode in which case the video is being chopped in half. I had to remove the CSS from other attempts at making this work and that caused the video to be chopped in half and then it shows all the videos instead of just one like the CSS forced.
here’s the css I removed if that matters:
.geodir-embed-container {
display:none!important;
}/*facebook video fill container*/
.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe {
width: 100%!important;
height: 700px!important;
max-height: 700px!important;
min-height: 700px!important;
position: relative!important;
}thanks!
This reply has been marked as private.This reply has been marked as private.I tried to add that to code snippet plugin and it returned a fatal error.
This still have a large gap below the video using the only CSS that at least shows the video:
https://veganlinked.com/services/united-states/north-carolina/charlotte/rent-a-renovator-llc/Here’s where it is not showing: https://veganlinked.com/web/category/plant-based-doctors/
This reply has been marked as private.Ugggghhhh, I just added a listing and went to change the URL to open in a new window and it’s back to the problem of being covered again 🙁
This reply has been marked as private.The more I look at it the more I think it should not have “Or link to existing content” because it’s offering links to invoices and all kinds of things. I’ve Googled searched a little and it seems others have had to disable this.
Using the Snippet Plugin I added the following code to remove the remove “Or link to existing content” field.
add_action( ‘after_wp_tiny_mce’, function( $settings )
{
// Check for the ‘wplink’ editor plugin
if( isset( $settings[‘content’][‘plugins’] )
&& false !== strpos( $settings[‘content’][‘plugins’], ‘wplink’ )
)
echo ‘<style>
#link-selector > .howto, #link-selector > #search-panel { display:none; }
</style>’;
} );This worked in that now I can access the open in new window! 🙂
But, now I want to remove that box below it that says “No search term specified. Showing recent items.” with all the site links that you can scroll through. I don’t think that is necessary at all and could be misused…
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private. -
AuthorPosts